forked from SciML/OrdinaryDiffEq.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOrdinaryDiffEqMultirate.jl
More file actions
34 lines (29 loc) · 1.11 KB
/
Copy pathOrdinaryDiffEqMultirate.jl
File metadata and controls
34 lines (29 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
module OrdinaryDiffEqMultirate
import OrdinaryDiffEqCore: alg_order, isfsal,
OrdinaryDiffEqAdaptiveAlgorithm, OrdinaryDiffEqNewtonAdaptiveAlgorithm,
generic_solver_docstring,
unwrap_alg, initialize!, perform_step!,
calculate_residuals, calculate_residuals!,
OrdinaryDiffEqMutableCache, OrdinaryDiffEqConstantCache,
@cache, alg_cache, full_cache, get_fsalfirstlast,
nlsolve_f, issplit, _fixup_ad, _unwrap_val
import OrdinaryDiffEqCore
import FastBroadcast: @..
import MuladdMacro: @muladd
import RecursiveArrayTools: recursivefill!
import DiffEqBase: prepare_alg
import LinearAlgebra
using SciMLBase: SplitFunction
using OrdinaryDiffEqNonlinearSolve: build_nlsolver, nlsolve!, nlsolvefail,
markfirststage!, isnewton, set_new_W!, NLNewton
import ADTypes: AutoForwardDiff
using Reexport
@reexport using SciMLBase
include("algorithms.jl")
include("alg_utils.jl")
include("multirate_tableaus.jl")
include("multirate_caches.jl")
include("multirate_perform_step.jl")
export MREEF, MRAB, MRIGARKERK22a, MRIGARKERK22b, MRIGARKERK33a, MRIGARKERK45a,
MRIGARKIRK21a, MRIGARKESDIRK34a, MRIGARKESDIRK46a, MIS
end