@@ -517,16 +517,16 @@ function DiffEqBase.__init(
517517 verbose,calck,force_dtmin,
518518 advance_to_tstop,stop_at_next_tstop)
519519
520- destats = DiffEqBase. DEStats (0 )
520+ stats = DiffEqBase. Stats (0 )
521521 if typeof (alg) <: Union {StochasticDiffEqCompositeAlgorithm,
522522 StochasticDiffEqRODECompositeAlgorithm}
523523 sol = DiffEqBase. build_solution (prob,alg,ts,timeseries,W= W,
524- destats = destats ,
524+ stats = stats ,
525525 calculate_error = false , alg_choice= alg_choice,
526526 interp = id, dense = dense, seed = _seed)
527527 else
528528 sol = DiffEqBase. build_solution (prob,alg,ts,timeseries,W= W,
529- destats = destats ,
529+ stats = stats ,
530530 calculate_error = false ,
531531 interp = id, dense = dense, seed = _seed)
532532 end
@@ -579,7 +579,7 @@ function DiffEqBase.__init(
579579 alg,sol,
580580 cache,callback_cache,tType (dt),W,P,rate_constants,
581581 opts,iter,success_iter,eigen_est,EEst,q,
582- QT (qoldinit),q11,destats )
582+ QT (qoldinit),q11,stats )
583583
584584 if initialize_integrator
585585 initialize_callbacks! (integrator, initialize_save)
0 commit comments