Skip to content

Commit c9c0384

Browse files
Merge pull request #960 from SciML/ChrisRackauckas-patch-6
Fix NoiseProcess ensemblealg check
2 parents a26c726 + 2c2cf60 commit c9c0384

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/solve.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1400,7 +1400,8 @@ end
14001400
else
14011401
nothing
14021402
end
1403-
elseif first(solve_args) isa SciMLBase.AbstractSciMLAlgorithm
1403+
elseif first(solve_args) isa SciMLBase.AbstractSciMLAlgorithm &&
1404+
!(first(solve_args) isa SciMLBase.EnsembleAlgorithm)
14041405
first(solve_args)
14051406
else
14061407
nothing

0 commit comments

Comments
 (0)