From bebe6f4b7d5d9874803d963157a04fba4e61f40a Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Tue, 2 May 2023 16:46:35 -0400 Subject: [PATCH] Remove show call Fixes https://github.com/SciML/MethodOfLines.jl/issues/271 --- src/discretization/generate_bc_eqs.jl | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/discretization/generate_bc_eqs.jl b/src/discretization/generate_bc_eqs.jl index cc6e4d2eb..a1b195f65 100644 --- a/src/discretization/generate_bc_eqs.jl +++ b/src/discretization/generate_bc_eqs.jl @@ -91,7 +91,6 @@ function boundary_value_maps(II, s::DiscreteSpace{N,M,G}, boundary, derivweights # Only make a map if the integral will actually come out to the same number of dimensions as the boundary value integralvs = filter(v -> !any(x -> safe_unwrap(x) isa Number, arguments(v)), boundary.depvars) - # @show integralvs integralbcmaps = generate_whole_domain_integration_rules(IIold, s, integralvs, indexmap, nothing, x_) @@ -137,8 +136,6 @@ function boundary_value_maps(II, s::DiscreteSpace{N,M,G}, boundary, derivweights substitute(v, r) end othervars = filter(v -> (length(arguments(v)) != 1) && any(isequal(x_), arguments(depvar(v, s))), othervars) - @show othervars, II, IIold, boundary.depvars, boundary.eq - depvarderivbcmaps = [(Differential(x_)^d)(u_) => central_difference(derivweights.map[Differential(x_)^d], II, s, [], (x2i(s, u, x_), x_), u, ufunc) for d in derivweights.orders[x_]] depvarbcmaps = [v_ => s.discvars[depvar(v_, s)][II] for v_ in [u_; othervars]]