17 lines
310 B
Julia
17 lines
310 B
Julia
using Test
|
|
using Random
|
|
using LinearAlgebra
|
|
using SPICE
|
|
using Thesis
|
|
|
|
# Tests
|
|
@testset "All Tests" begin
|
|
include("plotting.jl")
|
|
include("inner_loop/laguerre-conway.jl")
|
|
include("inner_loop/propagator.jl")
|
|
include("inner_loop/phase.jl")
|
|
# include("inner_loop/monotonic_basin_hopping.jl")
|
|
end
|
|
|
|
print()
|