File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 247247"""
248248 allows_non_wiener_noise(alg::AbstractSDEAlgorithm)
249249
250- Trait declaration for whether an algorithm allows for non-additive wiener noise.
250+ Trait declaration for whether an algorithm allows for non-wiener noise.
251251In general, this is false for any high order (that uses levy areas) or adaptive method.
252252
253253Defaults to false.
254254"""
255255allows_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
You can’t perform that action at this time.
0 commit comments