-
-
Notifications
You must be signed in to change notification settings - Fork 259
Expand file tree
/
Copy pathStochasticDiffEqROCK.jl
More file actions
36 lines (27 loc) · 1022 Bytes
/
StochasticDiffEqROCK.jl
File metadata and controls
36 lines (27 loc) · 1022 Bytes
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
35
36
module StochasticDiffEqROCK
using Reexport
@reexport using StochasticDiffEqCore
import OrdinaryDiffEqCore
import OrdinaryDiffEqCore: perform_step!, initialize!, issplit
import StochasticDiffEqCore: alg_cache, alg_order, alg_compatible,
alg_needs_extra_process, is_split_step,
StochasticDiffEqAlgorithm, StochasticDiffEqAdaptiveAlgorithm,
StochasticDiffEqCache, StochasticDiffEqConstantCache, StochasticDiffEqMutableCache,
@cache
import DiffEqBase: is_diagonal_noise, @..
import DiffEqBase: calculate_residuals, calculate_residuals!
import DiffEqBase: full_cache, rand_cache, ratenoise_cache
import MuladdMacro: @muladd
import SciMLBase
using LinearAlgebra
using Random: rand!
using StaticArrays
using RecursiveArrayTools
include("algorithms.jl")
include("alg_utils.jl")
include("caches/SROCK_caches.jl")
include("SROCK_tableaus.jl")
include("SROCK_utils.jl")
include("perform_step/SROCK_perform_step.jl")
export SROCK1, SROCK2, KomBurSROCK2, SROCKC2, SROCKEM, SKSROCK, TangXiaoSROCK2
end # module