File tree Expand file tree Collapse file tree
test/simulation_and_solving Expand file tree Collapse file tree Original file line number Diff line number Diff line change 188188
189189 # Solves and checks values of solution (do this before integrator mutation test
190190 # since integrator mutation affects shared parameter state).
191- sol = solve (prob, Tsit5 (); maxiters = 10 )
191+ sol = solve (prob, Tsit5 (); maxiters = 10 , verbose = ODEVerbosity (SciMLLogging . None ()) )
192192 @test sol[:X ][1 ] == 1.0
193193 @test sol[:X2 ][1 ] == 0.0
194194 @test sol[:Y ][1 ] == 0.0
215215 @test prob2. ps[:d ] == 0.5 # not changed
216216
217217 # Test that we can solve the remade problem and verify solution values.
218- sol2 = solve (prob2, Tsit5 (); maxiters = 10 )
218+ sol2 = solve (prob2, Tsit5 (); maxiters = 10 , verbose = ODEVerbosity (SciMLLogging . None ()) )
219219 @test sol2[:X ][1 ] == 3.0
220220 @test sol2[:X2 ][1 ] == 2.0
221221 @test sol2[:Y ][1 ] == 1.0
You can’t perform that action at this time.
0 commit comments