@@ -407,20 +407,20 @@ function DiffEqBase.__init(prob::AbstractSDDEProblem,# TODO DiffEqBasee.Abstract
407407 verbose, calck, force_dtmin,
408408 advance_to_tstop, stop_at_next_tstop)
409409
410- destats = DiffEqBase. DEStats (0 )
410+ stats = DiffEqBase. Stats (0 )
411411 if typeof (getalg (alg)) <: StochasticDiffEq.StochasticDiffEqCompositeAlgorithm
412412 # TODO : DISCONNECT!!!!
413413 sol = DiffEqBase. build_solution (prob, alg, sde_integrator. sol. t,
414414 sde_integrator. sol. u, W = W,
415- destats = destats ,
415+ stats = stats ,
416416 calculate_error = false , alg_choice = alg_choice,
417417 interp = id, dense = dense, seed = _seed)
418418 # separate statistics of the integrator and the history
419419 else
420420 # TODO : DISCONNECT!!!!
421421 sol = DiffEqBase. build_solution (prob, alg, sde_integrator. sol. t,
422422 sde_integrator. sol. u, W = W,
423- destats = destats ,
423+ stats = stats ,
424424 calculate_error = false ,
425425 interp = id, dense = dense, seed = _seed)
426426 # separate statistics of the integrator and the history
@@ -483,7 +483,7 @@ function DiffEqBase.__init(prob::AbstractSDDEProblem,# TODO DiffEqBasee.Abstract
483483 P,
484484 opts, iter, success_iter, eigen_est,
485485 EEst, q, QT (qoldinit), q11, history,
486- destats , sde_integrator)
486+ stats , sde_integrator)
487487
488488 if initialize_integrator
489489 StochasticDiffEq. initialize_callbacks! (integrator, initialize_save)
0 commit comments