Skip to content

Commit

Permalink
better directory structure
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasKoziorek committed Oct 2, 2024
1 parent c041520 commit 77bec25
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions src/PeriodicOrbits.jl
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ include("api.jl")
include("stability.jl")
include("minimal_period.jl")
include("pretty_printing.jl")
include("lambdamatrix.jl")
include("algorithms/schmelcher_diakonos.jl")
include("algorithms/optimized_shooting.jl")
include("algorithms/davidchack_lai.jl")
include("algorithms/discrete_time/lambdamatrix.jl")
include("algorithms/discrete_time/schmelcher_diakonos.jl")
include("algorithms/continuous_time/optimized_shooting.jl")
include("algorithms/discrete_time/davidchack_lai.jl")

end
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ testfile(file, testname=defaultname(file)) = @testset "$testname" begin; include
testfile("api.jl")
testfile("stability.jl")
testfile("minimal_period.jl")
testfile("algorithms/optimized_shooting.jl")
testfile("algorithms/schmelcher_diakonos.jl")
testfile("algorithms/davidchack_lai.jl")
testfile("algorithms/continuous_time/optimized_shooting.jl")
testfile("algorithms/discrete_time/schmelcher_diakonos.jl")
testfile("algorithms/discrete_time/davidchack_lai.jl")
end

0 comments on commit 77bec25

Please sign in to comment.