From 71ff036c26d2df0fb2030782da8851a7ae1d1d47 Mon Sep 17 00:00:00 2001 From: benedict-96 Date: Mon, 1 Jul 2024 14:05:06 +0200 Subject: [PATCH] Only testing 2 instances instead of +10 now. --- test/test_hodeensembles.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test_hodeensembles.jl b/test/test_hodeensembles.jl index fed9cd6..5c94cac 100644 --- a/test/test_hodeensembles.jl +++ b/test/test_hodeensembles.jl @@ -4,8 +4,8 @@ import GeometricProblems.TodaLattice as tl using Test function test_multiple_initial_conditions(cho::Module) - q₀_vec = [cho.q₀ .+ α for α in 0. : .4 : .8] - p₀_vec = [cho.p₀ .+ α for α in 0. : .4 : .8] + q₀_vec = [cho.q₀ .+ α for α in 0. : .4 : .4] + p₀_vec = [cho.p₀ .+ α for α in 0. : .4 : .4] # ensemble problem epr = cho.hodeensemble(q₀_vec, p₀_vec) @@ -20,7 +20,7 @@ end function test_multiple_parameters(cho::Module) params_vec = Vector{NamedTuple}() - for i in 0:10 + for i in 0:1 param_vals = () for key in keys(cho.default_parameters) param_vals = (param_vals..., cho.default_parameters[key] .+ 1. * i)