From 7248dc309cafe88efc92d26071caca39233635df Mon Sep 17 00:00:00 2001 From: Bogdan Enache <enache2@illinois.edu> Date: Mon, 27 Feb 2017 13:37:51 -0600 Subject: [PATCH] Linter --- grudge/models/advection.py | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/grudge/models/advection.py b/grudge/models/advection.py index 707a729d..68b1a0ba 100644 --- a/grudge/models/advection.py +++ b/grudge/models/advection.py @@ -172,16 +172,15 @@ class VariableCoefficientAdvectionOperator(HyperbolicOperator): self.flux(pair)) return sym.InverseMassOperator()( - np.dot( - sym.stiffness_t(self.ambient_dim), sym.cse(self.v*u)) - - sym.FaceMassOperator()( - flux(sym.int_tpair(u)) - + flux(sym.bv_tpair(sym.BTAG_ALL, u, bc_in)) + np.dot(sym.stiffness_t(self.ambient_dim), sym.cse(self.v*u)) + - sym.FaceMassOperator()( + flux(sym.int_tpair(u)) + + flux(sym.bv_tpair(sym.BTAG_ALL, u, bc_in)) - # FIXME: Add back support for inflow/outflow tags - #+ flux(sym.bv_tpair(self.inflow_tag, u, bc_in)) - #+ flux(sym.bv_tpair(self.outflow_tag, u, bc_out)) - )) + # FIXME: Add back support for inflow/outflow tags + #+ flux(sym.bv_tpair(self.inflow_tag, u, bc_in)) + #+ flux(sym.bv_tpair(self.outflow_tag, u, bc_out)) + )) # }}} # vim: foldmethod=marker -- GitLab