Skip to content

Commit

Permalink
remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Nägele committed Oct 12, 2023
1 parent 081a905 commit 7f58ac5
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/CombineModels.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ function +(model1::Model, model2::Model)
sfc_model.endogenous_variables = vcat(model1.endogenous_variables, model2.endogenous_variables)
sfc_model.exogenous_variables = vcat(exos1, exos2)
sfc_model.parameters = vcat(model1.parameters, model2.parameters)
println(typeof(sfc_model.math_operators))
println(typeof(model1.math_operators))
sfc_model.math_operators = model1.math_operators # FIXME: does this make sense?
sfc_model.equations = equations
eval(build_f!(equations))
Expand Down

0 comments on commit 7f58ac5

Please sign in to comment.