Skip to content

Commit

Permalink
Change default step controler
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Giguere committed Apr 1, 2024
1 parent 475a4f1 commit 37f4def
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qutip_jax/ode.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class DiffraxIntegrator(Integrator):
integrator_options: dict = {
"dt0": 0.0001,
"solver": diffrax.Tsit5(),
"stepsize_controller": diffrax.ConstantStepSize(),
"stepsize_controller": diffrax.PIDController(atol=1e-8, rtol=1e-6),
"max_steps": 100000,
}

Expand Down

0 comments on commit 37f4def

Please sign in to comment.