Skip to content

Commit

Permalink
pass on parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Mar 29, 2018
1 parent fdae29a commit 31dbb34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/benchmark.jl
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ end
brownian_values = cumsum([[zeros(size(prob.u0))];[sqrt(test_dt)*randn(size(prob.u0)) for i in 1:length(t)-1]])
brownian_values2 = cumsum([[zeros(size(prob.u0))];[sqrt(test_dt)*randn(size(prob.u0)) for i in 1:length(t)-1]])
np = NoiseGrid(t,brownian_values,brownian_values2)
_prob = SDEProblem(prob.f,prob.g,prob.u0,prob.tspan,
_prob = SDEProblem(prob.f,prob.g,prob.u0,prob.tspan,prob.p,
noise=np,
noise_rate_prototype=prob.noise_rate_prototype);
true_sol = solve(_prob,appxsol_setup[:alg];kwargs...,appxsol_setup...)
Expand Down

0 comments on commit 31dbb34

Please sign in to comment.