small test change

This commit is contained in:
Connor Johnstone
2025-10-23 15:18:41 -04:00
parent b42f3a3e77
commit 8d4aed4e84

View File

@@ -24,7 +24,7 @@ fn bench_orbit(c: &mut Criterion) {
// Integrate
let ode = ODE::new(&derivative, 0.0, 86400.0, y0, params);
let dp45 = DormandPrince45::new();
let dp45 = DormandPrince45::new().a_tol(1e-8).r_tol(1e-8);
let controller = PIController::new(0.37, 0.04, 10.0, 0.2, 1000.0, 0.9, 0.01);
c.bench_function("bench_orbit", |b| {