We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9264a9 commit fc06f6aCopy full SHA for fc06f6a
test/upstream.jl
@@ -10,8 +10,9 @@ tspan = (0.0,100.0)
10
prob = ODEProblem(lorenz,u0,tspan)
11
sol = solve(prob,Tsit5());
12
sol = solve(prob,AutoTsit5(Rosenbrock23(autodiff=false)));
13
+@test_broken sol = solve(prob,AutoTsit5(Rosenbrock23()));
14
-function mymodel(F, vars)
15
+function f!(F, vars)
16
x = vars.x[1]
17
F.x[1][1] = (x[1]+3)*(x[2]^3-7)+18
18
F.x[1][2] = sin(x[2]*exp(x[1])-1)
0 commit comments