19 lines
369 B
Julia
19 lines
369 B
Julia
using Test
|
|
using Random
|
|
using LinearAlgebra
|
|
using Thesis
|
|
|
|
|
|
# Tests
|
|
@testset "All Tests" begin
|
|
include("spacecraft.jl")
|
|
include("plotting.jl")
|
|
include("inner_loop/laguerre-conway.jl")
|
|
include("inner_loop/propagator.jl")
|
|
include("inner_loop/find_closest.jl")
|
|
include("inner_loop/monotonic_basin_hopping.jl")
|
|
include("inner_loop/inner_loop.jl")
|
|
end
|
|
|
|
print()
|