Skip to content

Commit

Permalink
added base functionality: StochasticDelayDiffEq #2
Browse files Browse the repository at this point in the history
  • Loading branch information
HTSykora committed Sep 6, 2019
1 parent f752b53 commit c3fedd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/problems/sdde_problems.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ struct SDDEProblem{uType,tType,lType,lType2,isinplace,P,NP,F,G,H,C,ND} <:
seed::UInt64
neutral::Bool
order_discontinuity_t0::Int
# TODO @add_kwonly
function SDDEProblem{iip}(f::AbstractSDDEFunction{iip}, g, u0, h, tspan, p = nothing;

@add_kwonly function SDDEProblem{iip}(f::AbstractSDDEFunction{iip}, g, u0, h, tspan, p = nothing;
noise_rate_prototype = nothing, noise= nothing, seed = UInt64(0),
constant_lags = (), dependent_lags = (),
neutral = f.mass_matrix !== I && det(f.mass_matrix) != 1,
Expand Down

0 comments on commit c3fedd1

Please sign in to comment.