Skip to content

Commit 7cc9015

Browse files
Merge pull request #489 from SciML/ChrisRackauckas-patch-4
Better set_proposed_dt! error
2 parents 0a1fa61 + 81a2239 commit 7cc9015

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/integrator_interface.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ Sets the proposed `dt` for the next timestep. If second argument isa `DEIntegrat
126126
first argument to match that of second one. Note that due to PI control and step acceleration this is more than matching
127127
the factors in most cases.
128128
"""
129-
set_proposed_dt!(i::DEIntegrator) = error("modify_proposed_dt!: method has not been implemented for the integrator")
129+
set_proposed_dt!(i::DEIntegrator,dt) = error("set_proposed_dt!: method has not been implemented for the integrator")
130130

131131
"""
132132
savevalues!(integrator::DEIntegrator,

0 commit comments

Comments
 (0)