Skip to content

Commit c1bca74

Browse files
committed
fix lines
1 parent 5ce7dac commit c1bca74

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
@@ -942,7 +942,10 @@ DiffEqBase.DAEProblem{iip}(sys::AbstractODESystem, du0map, u0map, tspan,
942942
Generates a DAEProblem from an ODESystem and allows for automatically
943943
symbolically calculating numerical enhancements.
944944
945-
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.
945+
Note: Solvers for DAEProblems like DFBDF, DImplicitEuler, DABDF2 are
946+
generally slower than the ones for ODEProblems. If possible, it is
947+
recommended to formulate your problem in terms of an ODEProblem and
948+
use the corresponding ODE Solvers.
946949
"""
947950
function DiffEqBase.DAEProblem(sys::AbstractODESystem, args...; kwargs...)
948951
DAEProblem{true}(sys, args...; kwargs...)

0 commit comments

Comments
 (0)