-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
type.jl
47 lines (47 loc) · 1.06 KB
/
type.jl
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
37
38
39
40
41
42
43
44
45
46
47
mutable struct SDEIntegrator{algType,IIP,uType,uEltype,tType,tdirType,P2,eigenType,tTypeNoUnits,uEltypeNoUnits,randType,randType2,rateType,solType,cacheType,F4,F5,F6,OType,noiseType,EventErrorType,CallbackCacheType,RCs,IA} <: AbstractSDEIntegrator{algType,IIP,uType,tType}
f::F4
g::F5
c::F6
noise::noiseType
uprev::uType
tprev::tType
t::tType
u::uType
p::P2
dt::tType
dtnew::tType
dtpropose::tType
dtcache::tType
T::tType
tdir::tdirType
just_hit_tstop::Bool
do_error_check::Bool
isout::Bool
event_last_time::Int
vector_event_last_time::Int
last_event_error::EventErrorType
accept_step::Bool
last_stepfail::Bool
force_stepfail::Bool
dtchangeable::Bool
u_modified::Bool
saveiter::Int
alg::algType
sol::solType
cache::cacheType
callback_cache::CallbackCacheType
sqdt::tType
W::randType
P::randType2
rate_constants::RCs
opts::OType
iter::Int
success_iter::Int
eigen_est::eigenType
EEst::tTypeNoUnits
q::tTypeNoUnits
qold::tTypeNoUnits
q11::tTypeNoUnits
stats::DiffEqBase.Stats
initializealg::IA
end