diff --git a/dev/alg_dev/benchmarks/index.html b/dev/alg_dev/benchmarks/index.html index 8e44869..748989d 100644 --- a/dev/alg_dev/benchmarks/index.html +++ b/dev/alg_dev/benchmarks/index.html @@ -17,4 +17,4 @@ wp = WorkPrecision(prob, DP5(), abstols, reltols; name = "Dormand-Prince 4/5")
If we want to plot many WorkPrecisions together in order to compare between algorithms, you can make a WorkPrecisionSet. To do so, you pass the setups into the function as well:
wp_set = WorkPrecisionSet(prob, tspan, abstols, reltols, setups; numruns = 2)
setups = [Dict(:alg => RK4()); Dict(:alg => Euler()); Dict(:alg => BS3());
Dict(:alg => Midpoint()); Dict(:alg => BS5()); Dict(:alg => DP5())]
-wp_set = WorkPrecisionSet(prob, abstols, reltols, setups; dt = 1 / 2^4, numruns = 2)
Both of these types have a plot recipe to produce a work-precision diagram, and a print which will show some relevant information.
Settings
This document was generated with Documenter.jl version 0.27.25 on Monday 4 March 2024. Using Julia version 1.10.2.