Skip to content

Commit

Permalink
remove deprecated nout
Browse files Browse the repository at this point in the history
  • Loading branch information
lxvm committed Feb 23, 2024
1 parent 17fbcdc commit 3202674
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/processnoise.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ prob = SDEProblem(f, g, u0, (0.0, 1.0), noise = W)
sm = ProcessNoiseSystemMap(prob, 8, LambaEM(), abstol = 1e-3, reltol = 1e-3)
cov(x, u, p) = x, p
observed(sol, p) = sol[:, end]
exprob = ExpectationProblem(sm, observed, cov; nout = length(u0))
exprob = ExpectationProblem(sm, observed, cov)
sol1 = solve(exprob, Koopman(), ireltol = 1e-3, iabstol = 1e-3, batch = 64,
quadalg = CubaDivonne())
sol2 = solve(exprob, MonteCarlo(1_000_000))
Expand Down

0 comments on commit 3202674

Please sign in to comment.