Skip to content

Commit 1a52e79

Browse files
fix spacings in README
1 parent 9dde4ca commit 1a52e79

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,6 @@ savefig("benchmark1.png")
180180
#### Non-Stiff Problem 2: Rigid Body
181181

182182
```julia
183-
184-
185183
f = @ode_def_bare RigidBodyBench begin
186184
dy1 = -2*y2*y3
187185
dy2 = 1.25*y1*y3
@@ -234,8 +232,6 @@ savefig("benchmark2.png")
234232
#### Stiff Problem 1: ROBER Shorter and Simpler for SciPy
235233

236234
```julia
237-
238-
239235
rober = @ode_def begin
240236
dy₁ = -k₁*y₁+k₃*y₂*y₃
241237
dy₂ = k₁*y₁-k₂*y₂^2-k₃*y₂*y₃
@@ -290,8 +286,6 @@ savefig("benchmark31.png")
290286
See note below.
291287

292288
```julia
293-
294-
295289
prob = ODEProblem(rober,[1.0,0.0,0.0],(0.0,1e5),[0.04,3e7,1e4])
296290
sol = solve(prob,CVODE_BDF(),abstol=1/10^14,reltol=1/10^14)
297291
test_sol = TestSolution(sol)

0 commit comments

Comments
 (0)