Skip to content

Commit

Permalink
Merge pull request #272 from SciML/ChrisRackauckas-patch-1
Browse files Browse the repository at this point in the history
Remove show call
  • Loading branch information
ChrisRackauckas authored May 2, 2023
2 parents fb3343b + bebe6f4 commit 4d5a5bf
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/discretization/generate_bc_eqs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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_)

Expand Down Expand Up @@ -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]]
Expand Down

0 comments on commit 4d5a5bf

Please sign in to comment.