Skip to content

Commit ccf5699

Browse files
committed
Merge branch 'master' into hr/isinplace
2 parents d6ac059 + c0c6008 commit ccf5699

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "SciMLBase"
22
uuid = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
33
authors = ["Chris Rackauckas <[email protected]> and contributors"]
4-
version = "2.50.5"
4+
version = "2.50.6"
55

66
[deps]
77
ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b"

src/alg_traits.jl

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,3 +243,18 @@ as the maximum order of the algorithm.
243243
function alg_order(alg::AbstractODEAlgorithm)
244244
error("Order is not defined for this algorithm")
245245
end
246+
247+
"""
248+
Integral interpolation for the SDE solver algorithm. SDEs solutions depend on the chosen definition of the stochastic integral. In the Ito calculus,
249+
the left-hand rule is taken, while Stratonovich calculus uses the right-hand rule. Unlike in standard Riemannian integration, these integral rules do
250+
not converge to the same answer. In the context of a stochastic differential equation, the underlying solution (and its mean, variance, etc.) is dependent
251+
on the integral rule that is chosen. This trait describes which interpretation the solver algorithm subscribes to, and thus whether the solution should
252+
be interpretated as the solution to the SDE under the Ito or Stratonovich interpretation.
253+
254+
For more information, see https://oatml.cs.ox.ac.uk/blog/2022/03/22/ito-strat.html as a good high-level explanation.
255+
256+
!!! note
257+
The expected solution statistics are dependent on this output. Solutions from solvers with different
258+
interpretations are expected to have different answers on almost all SDEs without additive noise.
259+
"""
260+
function alg_interpretation end

0 commit comments

Comments
 (0)