We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15b5592 commit 6db32d9Copy full SHA for 6db32d9
docs/src/extras/timestepping.md
@@ -190,9 +190,9 @@ end
190
191
function StochasticDiffEq.stepsize_controller!(integrator::StochasticDiffEq.SDEIntegrator,
192
controller::CustomController, alg)
193
- integrator.q11 = DiffEqBase.value(DiffEqBase.fastpow(integrator.EEst, controller.beta1))
+ integrator.q11 = DiffEqBase.value(FastPower.fastpower(integrator.EEst, controller.beta1))
194
integrator.q = DiffEqBase.value(integrator.q11 /
195
- DiffEqBase.fastpow(integrator.qold, controller.beta2))
+ FastPower.fastpower(integrator.qold, controller.beta2))
196
integrator.q = DiffEqBase.value(max(inv(integrator.opts.qmax),
197
min(inv(integrator.opts.qmin),
198
integrator.q / integrator.opts.gamma)))
0 commit comments