Resync SDE noise when late add_tstop! shortens dt - #4041
Closed
niy-ati wants to merge 1 commit into
Closed
Conversation
Fixed-step EM could step past a tstop added after init because the Wiener increment still matched the original dt. After modify_dt_for_tstops!, resample noise to the shortened dt, and keep RSWM from expanding dt while tstops remain.
ChrisRackauckas
approved these changes
Jul 28, 2026
Member
|
thanks for this. It was almost right, but it needed to use a bit more of the RSWM internals to make sure the increment size change gets propagated through the bridge distribution. I finished it up in #4095 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
modify_dt_for_tstops!, resample the pending noise increment whenW.dtno longer matches the integratordt(lateadd_tstop!afteriniton fixed-step EM; [SDE] EM solver accepts incompatible tstop behind current time #3175 / StochasticDiffEq#413).dtinstead of letting RSWM expand it viaW.dt.add_tstop!throw check in StochasticDiffEqtstops_tests.jl.Test plan
lib/StochasticDiffEq/test/tstops_tests.jl(new [SDE] EM solver accepts incompatible tstop behind current time #3175 cases)init(SDEProblem(...), EM(); dt=0.02),add_tstop!(i, 0.01),step!(i)lands att == 0.01LambaEM()add_tstop!still throws