Skip to content

Commit

Permalink
default to adaptive SDE
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Apr 19, 2018
1 parent 1aec225 commit 58896d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sde_default_alg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ function default_algorithm{uType,tType,isinplace,ND}(prob::AbstractSDEProblem{uT
if :stiff alg_hints
alg = ImplicitEulerHeun(autodiff=false)
else
alg = EulerHeun()
alg = LambaEulerHeun()
end
else
if :stiff alg_hints
alg = ISSEM(autodiff=false)
else
alg = EM()
alg = LambaEM()
end
end
end
Expand Down

0 comments on commit 58896d0

Please sign in to comment.