@@ -41,9 +41,6 @@ solvers_all = [
4141 (; pkg = :boundaryvaluediffeq, type = :firk, name = "LobattoIIIc5", solver = Dict(:alg => LobattoIIIc5(), :dts=>1.0 ./ 5.0 .^ (1:4))),
4242 (; pkg = :boundaryvaluediffeq, type = :shooting, name = "Single Shooting", solver = Dict(:alg => Shooting(Tsit5(), NewtonRaphson()))),
4343 (; pkg = :boundaryvaluediffeq, type = :shooting, name = "Multiple Shooting", solver = Dict(:alg => MultipleShooting(10, Tsit5()))),
44- (; pkg = :simpleboundaryvaluediffeq, type = :simplemirk, name = "SimpleMIRK4", solver = Dict(:alg => SimpleMIRK4(), :dts=>1.0 ./ 5.0 .^ (1:4))),
45- (; pkg = :simpleboundaryvaluediffeq, type = :simplemirk, name = "SimpleMIRK5", solver = Dict(:alg => SimpleMIRK5(), :dts=>1.0 ./ 5.0 .^ (1:4))),
46- (; pkg = :simpleboundaryvaluediffeq, type = :simplemirk, name = "SimpleMIRK6", solver = Dict(:alg => SimpleMIRK6(), :dts=>1.0 ./ 5.0 .^ (1:4))),
4744 (; pkg = :wrapper, type = :general, name = "BVPM2", solver = Dict(:alg => BVPM2(), :dts=>1.0 ./ 5.0 .^ (1:4))),
4845 (; pkg = :wrapper, type = :general, name = "COLNEW", solver = Dict(:alg => COLNEW(), :dts=>1.0 ./ 5.0 .^ (1:4))),
4946];
@@ -250,7 +247,7 @@ plot_wpd(wps)
250247
251248```julia
252249fig = begin
253- LINESTYLES = Dict(:boundaryvaluediffeq => :solid, :simpleboundaryvaluediffeq => :dash, : wrapper => :dot)
250+ LINESTYLES = Dict(:boundaryvaluediffeq => :solid, :wrapper => :dot)
254251 ASPECT_RATIO = 0.7
255252 WIDTH = 1800
256253 HEIGHT = round(Int, WIDTH * ASPECT_RATIO)
0 commit comments