@@ -96,11 +96,11 @@ pdae = pdaeproblem()
96
96
@test sol2. q[1 : nt] == xs
97
97
98
98
# test step and nstore parameters
99
- sol = Solution (similar (ode, tspan = 2 .* tspan (ode)); step = 2 )
99
+ sol = Solution (similar (ode, tspan = 2 .* tspan (ode)), 2 )
100
100
@test ntime (sol) == 20
101
101
@test nstore (sol) == 10
102
102
103
- sol = Solution (similar (ode, tspan = 2 .* tspan (ode)); step = 10 )
103
+ sol = Solution (similar (ode, tspan = 2 .* tspan (ode)), 10 )
104
104
@test ntime (sol) == 20
105
105
@test nstore (sol) == 2
106
106
@@ -142,11 +142,11 @@ end
142
142
@test sol2. p[1 : nt] == ps
143
143
144
144
# test step and nstore parameters
145
- sol = Solution (similar (pode, tspan = 2 .* tspan (pode)), step = 2 )
145
+ sol = Solution (similar (pode, tspan = 2 .* tspan (pode)), 2 )
146
146
@test ntime (sol) == 20
147
147
@test nstore (sol) == 10
148
148
149
- sol = Solution (similar (pode, tspan = 2 .* tspan (pode)), step = 10 )
149
+ sol = Solution (similar (pode, tspan = 2 .* tspan (pode)), 10 )
150
150
@test ntime (sol) == 20
151
151
@test nstore (sol) == 2
152
152
end
@@ -187,11 +187,11 @@ end
187
187
@test sol2. λ[1 : nt] == λs
188
188
189
189
# test step and nstore parameters
190
- sol = Solution (similar (dae, tspan = 2 .* tspan (dae)), step = 2 )
190
+ sol = Solution (similar (dae, tspan = 2 .* tspan (dae)), 2 )
191
191
@test ntime (sol) == 20
192
192
@test nstore (sol) == 10
193
193
194
- sol = Solution (similar (dae, tspan = 2 .* tspan (dae)), step = 10 )
194
+ sol = Solution (similar (dae, tspan = 2 .* tspan (dae)), 10 )
195
195
@test ntime (sol) == 20
196
196
@test nstore (sol) == 2
197
197
end
@@ -235,11 +235,11 @@ end
235
235
@test sol2. p[1 : nt] == ps
236
236
237
237
# test step and nstore parameters
238
- sol = Solution (similar (pdae, tspan = 2 .* tspan (pdae)), step = 2 )
238
+ sol = Solution (similar (pdae, tspan = 2 .* tspan (pdae)), 2 )
239
239
@test ntime (sol) == 20
240
240
@test nstore (sol) == 10
241
241
242
- sol = Solution (similar (pdae, tspan = 2 .* tspan (pdae)), step = 10 )
242
+ sol = Solution (similar (pdae, tspan = 2 .* tspan (pdae)), 10 )
243
243
@test ntime (sol) == 20
244
244
@test nstore (sol) == 2
245
245
0 commit comments