Skip to content

Commit c1ac583

Browse files
committed
Formatting.
1 parent d9d17e9 commit c1ac583

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/systems/diffeqs/abstractodesystem.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,6 @@ function generate_function(sys::AbstractODESystem, dvs = states(sys), ps = param
142142
pre, sol_states = get_substitutions_and_solved_states(sys,
143143
no_postprocess = has_difference)
144144

145-
146145
if implicit_dae
147146
build_function(rhss, ddvs, u, p, t; postprocess_fbody = pre, states = sol_states,
148147
kwargs...)

src/systems/diffeqs/odesystem.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,8 @@ end
241241
function collect_constants(eqs) #Does this need to be different for other system types?
242242
constants = Set()
243243
for eq in eqs
244-
collect_constants!(constants,eq.lhs)
245-
collect_constants!(constants,eq.rhs)
244+
collect_constants!(constants, eq.lhs)
245+
collect_constants!(constants, eq.rhs)
246246
end
247247
return collect(constants)
248248
end

0 commit comments

Comments
 (0)