Skip to content

Commit 7c884d4

Browse files
Apply suggestions from code review
1 parent a475b3b commit 7c884d4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

benchmarks/NonStiffODE/FitzhughNagumo_wpd.jmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: Chris Rackauckas
88
The purpose of this is to see how the errors scale on a standard nonlinear problem.
99

1010
```julia
11-
using OrdinaryDiffEq, OrdinaryDiffEqCore, ParameterizedFunctions, ODEInterface,
11+
using OrdinaryDiffEq, ParameterizedFunctions, ODEInterface,
1212
ODEInterfaceDiffEq, LSODA, Sundials, DiffEqDevTools,
1313
StaticArrays, OrdinaryDiffEqSIMDRK
1414
using Plots;

benchmarks/NonStiffODE/LotkaVolterra_wpd.jmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: Chris Rackauckas
88
The purpose of this problem is to test the performance on easy problems. Since it's periodic, the error is naturally low, and so most of the difference will come down to startup times and, when measuring the interpolations, the algorithm choices.
99

1010
```julia
11-
using OrdinaryDiffEq, OrdinaryDiffEqCore, ParameterizedFunctions, ODEInterfaceDiffEq, LSODA,
11+
using OrdinaryDiffEq, ParameterizedFunctions, ODEInterfaceDiffEq, LSODA,
1212
Sundials, DiffEqDevTools, StaticArrays, OrdinaryDiffEqSIMDRK
1313

1414
f = @ode_def LotkaVolterra begin

benchmarks/NonStiffODE/RigidBody_wpd.jmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ author: Chris Rackauckas
44
---
55

66
```julia
7-
using OrdinaryDiffEq, OrdinaryDiffEqCore, ParameterizedFunctions, ODEInterfaceDiffEq, LSODA,
7+
using OrdinaryDiffEq, ParameterizedFunctions, ODEInterfaceDiffEq, LSODA,
88
Sundials, DiffEqDevTools, StaticArrays, OrdinaryDiffEqSIMDRK
99

1010
k(t) = 0.25*sin(t)^2

benchmarks/NonStiffODE/linear_wpd.jmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ rapid development has its advantages.
2323
## Setup
2424

2525
```julia
26-
using OrdinaryDiffEq, OrdinaryDiffEqCore, Sundials, DiffEqDevTools, Plots, ODEInterfaceDiffEq, LSODA, OrdinaryDiffEqSIMDRK
26+
using OrdinaryDiffEq, Sundials, DiffEqDevTools, Plots, ODEInterfaceDiffEq, LSODA, OrdinaryDiffEqSIMDRK
2727
using Random
2828
Random.seed!(123)
2929
gr()

0 commit comments

Comments
 (0)