File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -244,6 +244,26 @@ function alg_order(alg::AbstractODEAlgorithm)
244244 error (" Order is not defined for this algorithm" )
245245end
246246
247+ """
248+ allows_non_wiener_noise(alg::AbstractSDEAlgorithm)
249+
250+ Trait declaration for whether an algorithm allows for non-wiener noise.
251+ In general, this is false for any high order (that uses levy areas) or adaptive method.
252+
253+ Defaults to false.
254+ """
255+ allows_non_wiener_noise (alg:: AbstractSDEAlgorithm ) = false
256+
257+ """
258+ requires_additive_noise(alg::AbstractSDEAlgorithm)
259+
260+ Trait declaration for whether an algorithm requires additive noise, i.e. the noise
261+ function is not a function of `u`.
262+
263+ Defaults to false
264+ """
265+ requires_additive_noise (alg:: AbstractSDEAlgorithm ) = false
266+
247267EnumX. @enumx AlgorithmInterpretation Ito Stratonovich
248268
249269"""
You can’t perform that action at this time.
0 commit comments