Skip to content

Commit 80a26f2

Browse files
committed
format
1 parent c3a633c commit 80a26f2

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

src/alg_traits.jl

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -245,16 +245,17 @@ function alg_order(alg::AbstractODEAlgorithm)
245245
end
246246

247247
"""
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
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
252252
be interpreted as the solution to the SDE under the Ito or Stratonovich interpretation.
253253
254254
For more information, see https://oatml.cs.ox.ac.uk/blog/2022/03/22/ito-strat.html as a good high-level explanation.
255255
256256
!!! note
257-
The expected solution statistics are dependent on this output. Solutions from solvers with different
257+
258+
The expected solution statistics are dependent on this output. Solutions from solvers with different
258259
interpretations are expected to have different answers on almost all SDEs without additive noise.
259260
"""
260261
function alg_interpretation end

src/utils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ form is disabled and the 2-argument signature is ensured to be matched.
241241
242242
# See also
243243
244-
- [`numargs`](@ref numargs)
244+
- [`numargs`](@ref numargs)
245245
"""
246246
function isinplace(f, inplace_param_number, fname = "f", iip_preferred = true;
247247
has_two_dispatches = true, isoptimization = false,

0 commit comments

Comments
 (0)