From fa8098c72e89e6fbb2d4be33e8cdd29680e1d7d6 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Sun, 17 Nov 2024 10:19:41 -0100 Subject: [PATCH] Update ode_firk_tests.jl --- lib/OrdinaryDiffEqFIRKGenerator/test/ode_firk_tests.jl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/OrdinaryDiffEqFIRKGenerator/test/ode_firk_tests.jl b/lib/OrdinaryDiffEqFIRKGenerator/test/ode_firk_tests.jl index bde7077368..d3c19ebbb5 100644 --- a/lib/OrdinaryDiffEqFIRKGenerator/test/ode_firk_tests.jl +++ b/lib/OrdinaryDiffEqFIRKGenerator/test/ode_firk_tests.jl @@ -1,6 +1,8 @@ using OrdinaryDiffEqFIRK, OrdinaryDiffEqFIRKGenerator, DiffEqDevTools, Test, LinearAlgebra import ODEProblemLibrary: prob_ode_linear, prob_ode_2Dlinear +testTol = 0.5 + prob_ode_linear_big = remake(prob_ode_linear, u0 = big.(prob_ode_linear.u0), tspan = big.(prob_ode_linear.tspan)) prob_ode_2Dlinear_big = remake(prob_ode_2Dlinear, u0 = big.(prob_ode_2Dlinear.u0), tspan = big.(prob_ode_2Dlinear.tspan))