@@ -40,7 +40,7 @@ mutable struct DEOptions{uEltype,uEltypeNoUnits,tTypeNoUnits,tType,F2,F3,F4,F5,F
40
40
stop_at_next_tstop:: Bool
41
41
end
42
42
43
- mutable struct ODEIntegrator{algType<: OrdinaryDiffEqAlgorithm ,uType,tType,tTypeNoUnits,tdirType,ksEltype,SolType,rateType, F,ProgressType,CacheType,O,FSALType} <: AbstractODEIntegrator
43
+ mutable struct ODEIntegrator{algType<: OrdinaryDiffEqAlgorithm ,uType,tType,tTypeNoUnits,tdirType,ksEltype,SolType,F,ProgressType,CacheType,O,FSALType} <: AbstractODEIntegrator
44
44
sol:: SolType
45
45
u:: uType
46
46
k:: ksEltype
@@ -51,7 +51,6 @@ mutable struct ODEIntegrator{algType<:OrdinaryDiffEqAlgorithm,uType,tType,tTypeN
51
51
uprev2:: uType
52
52
tprev:: tType
53
53
alg:: algType
54
- rate_prototype:: rateType
55
54
notsaveat_idxs:: Vector{Int}
56
55
dtcache:: tType
57
56
dtchangeable:: Bool
@@ -81,19 +80,19 @@ mutable struct ODEIntegrator{algType<:OrdinaryDiffEqAlgorithm,uType,tType,tTypeN
81
80
fsallast:: FSALType
82
81
83
82
function (:: Type {ODEIntegrator{algType,uType,tType,tTypeNoUnits,tdirType,ksEltype,SolType,
84
- rateType, F,ProgressType,CacheType,O,FSALType}}){algType,uType,tType,tTypeNoUnits,tdirType,ksEltype,SolType,
85
- rateType, F,ProgressType,CacheType,O,FSALType}(
83
+ F,ProgressType,CacheType,O,FSALType}}){algType,uType,tType,tTypeNoUnits,tdirType,ksEltype,SolType,
84
+ F,ProgressType,CacheType,O,FSALType}(
86
85
sol,u,k,t,dt,f,uprev,uprev2,tprev,
87
- alg,rate_prototype, notsaveat_idxs,dtcache,dtchangeable,dtpropose,tdir,
86
+ alg,notsaveat_idxs,dtcache,dtchangeable,dtpropose,tdir,
88
87
EEst,qold,q11,erracc,dtacc,success_iter,
89
88
iter,saveiter,saveiter_dense,prog,cache,
90
89
kshortsize,force_stepfail,last_stepfail,just_hit_tstop,
91
90
accept_step,isout,reeval_fsal,u_modified,opts)
92
91
93
92
new{algType,uType,tType,tTypeNoUnits,tdirType,ksEltype,SolType,
94
- rateType, F,ProgressType,CacheType,O,FSALType}(
93
+ F,ProgressType,CacheType,O,FSALType}(
95
94
sol,u,k,t,dt,f,uprev,uprev2,tprev,
96
- alg,rate_prototype, notsaveat_idxs,dtcache,dtchangeable,dtpropose,tdir,
95
+ alg,notsaveat_idxs,dtcache,dtchangeable,dtpropose,tdir,
97
96
EEst,qold,q11,erracc,dtacc,success_iter,
98
97
iter,saveiter,saveiter_dense,prog,cache,
99
98
kshortsize,force_stepfail,last_stepfail,just_hit_tstop,
0 commit comments