From 7f58ac5a5ae195e8d7c6eae6519f32d005da11ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20N=C3=A4gele?= Date: Thu, 12 Oct 2023 14:48:53 +0200 Subject: [PATCH] remove print statements --- src/CombineModels.jl | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/CombineModels.jl b/src/CombineModels.jl index 115dfea..bb6932f 100644 --- a/src/CombineModels.jl +++ b/src/CombineModels.jl @@ -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))