Skip to content
Snippets Groups Projects
Commit 8b800fc2 authored by Andreas Dedner's avatar Andreas Dedner
Browse files

don't include euler fluxes in header but add the include to the python include list

parent eaf6b4d0
No related branches found
No related tags found
No related merge requests found
Pipeline #28571 failed
......@@ -55,7 +55,6 @@
#include <dune/fem-dg/operator/dg/operatortraits.hh>
#include <dune/fem-dg/operator/fluxes/advection/fluxes.hh>
#include <dune/fem-dg/operator/fluxes/euler/fluxes.hh>
#include <dune/fem-dg/operator/fluxes/diffusion/fluxes.hh>
#include <dune/fem-dg/operator/limiter/limiterutility.hh>
......
......@@ -13,7 +13,6 @@
// dune-fem-dg includes
#include <dune/fem-dg/algorithm/evolution.hh>
#include <dune/fem-dg/operator/fluxes/advection/fluxes.hh>
#include <dune/fem-dg/operator/fluxes/euler/fluxes.hh>
#include <dune/fem-dg/operator/dg/operatortraits.hh>
#include <dune/fem-dg/operator/dg/primaloperator.hh>
#include <dune/fem-dg/models/modelwrapper.hh>
......
......@@ -16,13 +16,6 @@
#include <dune/fem-dg/models/defaultmodel.hh>
#include <dune/fem-dg/operator/limiter/limitpass.hh>
// needed?
#include <dune/fem-dg/operator/fluxes/euler/fluxes.hh>
#include <dune/fem-dg/operator/fluxes/rotator.hh>
#include <dune/fem-dg/operator/fluxes/analyticaleulerflux.hh>
#include <dune/fem-dg/misc/error/l2eocerror.hh>
#include <dune/fem-dg/misc/error/l1eocerror.hh>
namespace Dune
{
namespace Fem
......
......@@ -219,6 +219,7 @@ def femDGOperator(Model, space,
else:
if advectionFlux.upper().find( 'EULER' ) >= 0:
advFluxId = "Dune::Fem::AdvectionFlux::Enum::euler_general"
includes += [ "dune/fem-dg/operator/fluxes/euler/fluxes.hh" ]
else:
advFluxId = "Dune::Fem::AdvectionFlux::Enum::general"
else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment