Haven't updated in awhile

This commit is contained in:
Connor
2021-12-13 22:23:31 -07:00
parent 48535e732f
commit a39dea7377
152 changed files with 4735 additions and 182 deletions

View File

@@ -1,5 +1,7 @@
module Thesis
homedir = "/home/connor/projects/thesis"
using LinearAlgebra
using ForwardDiff
using PlotlyJS
@@ -11,8 +13,8 @@ module Thesis
furnsh("../../spice_files/naif0012.tls")
furnsh("../../spice_files/de430.bsp")
catch
furnsh("spice_files/naif0012.tls")
furnsh("spice_files/de430.bsp")
furnsh("/home/connor/projects/thesis/spice_files/naif0012.tls")
furnsh("/home/connor/projects/thesis/spice_files/de430.bsp")
end
include("./types/errors.jl")
@@ -25,8 +27,8 @@ module Thesis
include("./utilities/conversions.jl")
include("./utilities/plotting.jl")
include("./nlp_solver.jl")
include("./utilities/lamberts.jl")
include("./mbh.jl")
include("./genetic_algorithm.jl")
include("./utilities/lamberts.jl")
end