Skip to content

Commit 2085862

Browse files
committed
cleanup: remove @show staements
1 parent 028ba89 commit 2085862

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

src/systems/diffeqs/odesystem.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,6 @@ function ODESystem(deqs::AbstractVector{<:Equation}, iv, dvs, ps;
279279

280280
constraintsystem = nothing
281281
if !isempty(constraints)
282-
@show constraints
283282
constraintsystem = process_constraint_system(constraints, dvs, ps, iv)
284283
for p in parameters(constraintsystem)
285284
!in(p, Set(ps)) && push!(ps, p)
@@ -807,7 +806,6 @@ function validate_vars_and_find_ps!(auxvars, auxps, sysvars, iv)
807806
throw(ArgumentError("Too many arguments for variable $var."))
808807
elseif length(arguments(var)) == 1
809808
arg = only(arguments(var))
810-
@show sts
811809
operation(var)(iv) sts ||
812810
throw(ArgumentError("Variable $var is not a variable of the ODESystem. Called variables must be variables of the ODESystem."))
813811

src/systems/model_parsing.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,6 @@ function parse_model!(exprs, comps, ext, eqs, icon, vs, ps, sps, c_evts, d_evts,
617617
cons, costs, dict, mod, arg, kwargs, where_types)
618618
mname = arg.args[1]
619619
body = arg.args[end]
620-
@show dict
621620
if mname == Symbol("@description")
622621
parse_description!(body, dict)
623622
elseif mname == Symbol("@components")
@@ -1170,7 +1169,6 @@ function parse_constraints!(cons, dict, body)
11701169
end
11711170

11721171
function parse_costs!(costs, dict, body)
1173-
@show dict
11741172
dict[:costs] = []
11751173
Base.remove_linenums!(body)
11761174
for arg in body.args

0 commit comments

Comments
 (0)