From f256c4d980e5dcf793241a7aab949afbefe4971f Mon Sep 17 00:00:00 2001 From: Vishal Sontakke Date: Sun, 18 Sep 2016 17:09:46 +0200 Subject: [PATCH] Change ROBER testcase relTol and absTol to arrays --- test/runtests.jl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index b66073abc..141390dad 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -75,7 +75,7 @@ let ydot end t = [0., 1e11] - t,y = ode23s(f, [1.0, 0.0, 0.0], t; abstol=1e-9, reltol=1e-9, + t,y = ode23s(f, [1.0, 0.0, 0.0], t; abstol=1e-9*ones(3), reltol=1e-9*ones(3), maxstep=1e11/10, minstep=1e11/1e18) refsol = [0.2083340149701255e-07, @@ -83,6 +83,7 @@ let 0.9999999791665050] # reference solution at tspan[2] @test norm(refsol-y[end], Inf) < 2e-10 end + include("interface-tests.jl") println("All looks OK")