Skip to content

Commit

Permalink
approximate
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Jul 14, 2018
1 parent 4adaf5e commit d3c5bae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/constrained.jl
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
dde_int = init(prob, alg; dt=0.1)
sol2 = solve!(dde_int)

@test sol.t == sol2.t && sol.u == sol2[1, :]
@test sol.t sol2.t && sol.u sol2[1, :]

## In-place function
prob = prob_dde_1delay
Expand All @@ -46,7 +46,7 @@
dde_int = init(prob, alg; dt=0.1)
sol2 = solve!(dde_int)

@test sol.t == sol2.t && sol.u == sol2[1, :]
@test sol.t sol2.t && sol.u sol2[1, :]

## In-place function
prob = prob_dde_2delays
Expand Down
4 changes: 2 additions & 2 deletions test/unconstrained.jl
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
prob = prob_dde_1delay_notinplace
sol2 = solve(prob, alg)

@test sol.t == sol2.t && sol.u == sol2[1, :]
@test sol.t sol2.t && sol.u sol2[1, :]

### In-place function
prob = prob_dde_1delay
Expand Down Expand Up @@ -68,7 +68,7 @@
prob = prob_dde_2delays_notinplace
sol2 = solve(prob, alg)

@test sol.t == sol2.t && sol.u == sol2[1, :]
@test sol.t sol2.t && sol.u sol2[1, :]

### In-place function
prob = prob_dde_2delays
Expand Down

0 comments on commit d3c5bae

Please sign in to comment.