From a1948c737f7dad29abaf6afc8551d8993b40fdcd Mon Sep 17 00:00:00 2001 From: Robert Kloefkorn <robertk@ucar.edu> Date: Sat, 7 Dec 2013 14:16:04 +0100 Subject: [PATCH] remove stupid latex tags. --- dune/fem-dg/stepper/steppertraits.hh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dune/fem-dg/stepper/steppertraits.hh b/dune/fem-dg/stepper/steppertraits.hh index c17a96ae..e2d47d43 100644 --- a/dune/fem-dg/stepper/steppertraits.hh +++ b/dune/fem-dg/stepper/steppertraits.hh @@ -36,30 +36,30 @@ struct StepperTraits #if (not defined EULER) and (defined FLUXDG) #warning "DGAdvectionDiffusionOperator: using LIMITER." typedef Dune :: DGLimitedAdvectionDiffusionOperator< ModelType, FluxType, - DiffusionFluxId, polynomialOrder > DgType; /*@LST1E@*/ + DiffusionFluxId, polynomialOrder > DgType; #else #warning "DGAdvectionDiffusionOperator: LIMITER can NOT be used. Not supported -> LIMITER, no EULER, no FLUXDG." typedef Dune :: DGAdvectionDiffusionOperator< ModelType, FluxType, - DiffusionFluxId, polynomialOrder > DgType; /*@LST1E@*/ + DiffusionFluxId, polynomialOrder > DgType; #endif #ifndef HIGHER_ORDER_FV #warning "DGAdvectionOperator: using LIMITER." typedef Dune :: DGLimitedAdvectionOperator< ModelType, FluxType, - DiffusionFluxId, polynomialOrder > DgAdvectionType; /*@LST1E@*/ + DiffusionFluxId, polynomialOrder > DgAdvectionType; #else #warning "DGAdvectionOperator: using HIGHER ORDER FV." typedef Dune :: DGLimitedAdvectionOperator< ModelType, FluxType, - DiffusionFluxId, -1 > DgAdvectionType; /*@LST1E@*/ + DiffusionFluxId, -1 > DgAdvectionType; #endif #else // no LIMITER #warning "No limiter is applied to the numerical solution !!" typedef Dune :: DGAdvectionDiffusionOperator< ModelType, FluxType, - DiffusionFluxId, polynomialOrder > DgType; /*@LST1E@*/ + DiffusionFluxId, polynomialOrder > DgType; typedef Dune :: DGAdvectionOperator< ModelType, FluxType, - DiffusionFluxId, polynomialOrder > DgAdvectionType; /*@LST1E@*/ + DiffusionFluxId, polynomialOrder > DgAdvectionType; #endif typedef Dune :: DGDiffusionOperator< ModelType, FluxType, - DiffusionFluxId, polynomialOrder > DgDiffusionType; /*@LST1E@*/ + DiffusionFluxId, polynomialOrder > DgDiffusionType; // The discrete function for the unknown solution is defined in the DgOperator typedef typename DgType :: DestinationType DiscreteFunctionType; -- GitLab