You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/utils.jl
+2-1
Original file line number
Diff line number
Diff line change
@@ -1225,7 +1225,8 @@ function process_equations(eqs, iv)
1225
1225
throw(ArgumentError("An ODESystem can only have one independent variable."))
1226
1226
diffvar in diffvars &&
1227
1227
throw(ArgumentError("The differential variable $diffvar is not unique in the system of equations."))
1228
-
!(symtype(diffvar) === Real ||eltype(symtype(diffvar)) === Real) &&throw(ArgumentError("Differential variable $diffvar has type $(symtype(diffvar)). Differential variables should not be concretely typed."))
1228
+
!(symtype(diffvar) === Real ||eltype(symtype(diffvar)) === Real) &&
1229
+
throw(ArgumentError("Differential variable $diffvar has type $(symtype(diffvar)). Differential variables should not be concretely typed."))
0 commit comments