Skip to content

Commit 29d6ef7

Browse files
committed
fix lines
1 parent 02e7443 commit 29d6ef7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/systems/diffeqs/abstractodesystem.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -937,7 +937,10 @@ DiffEqBase.DAEProblem{iip}(sys::AbstractODESystem, du0map, u0map, tspan,
937937
Generates a DAEProblem from an ODESystem and allows for automatically
938938
symbolically calculating numerical enhancements.
939939
940-
Note: Solvers for DAEProblems like DFBDF, DImplicitEuler, DABDF2 are generally slower than the ones for ODEProblems. If possible, it is recommended to formulate your problem in terms of an ODEProblem and use the corresponding ODE Solvers.
940+
Note: Solvers for DAEProblems like DFBDF, DImplicitEuler, DABDF2 are
941+
generally slower than the ones for ODEProblems. If possible, it is
942+
recommended to formulate your problem in terms of an ODEProblem and
943+
use the corresponding ODE Solvers.
941944
"""
942945
function DiffEqBase.DAEProblem(sys::AbstractODESystem, args...; kwargs...)
943946
DAEProblem{true}(sys, args...; kwargs...)

0 commit comments

Comments
 (0)