small test change
This commit is contained in:
@@ -24,7 +24,7 @@ fn bench_orbit(c: &mut Criterion) {
|
|||||||
|
|
||||||
// Integrate
|
// Integrate
|
||||||
let ode = ODE::new(&derivative, 0.0, 86400.0, y0, params);
|
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);
|
let controller = PIController::new(0.37, 0.04, 10.0, 0.2, 1000.0, 0.9, 0.01);
|
||||||
|
|
||||||
c.bench_function("bench_orbit", |b| {
|
c.bench_function("bench_orbit", |b| {
|
||||||
|
|||||||
Reference in New Issue
Block a user