Skip to content
Snippets Groups Projects
Commit 11b0a004 authored by Robert Kloefkorn's avatar Robert Kloefkorn
Browse files

make ellipt compile, added missing gradient method.

parent 589e4dca
No related branches found
No related tags found
No related merge requests found
......@@ -243,12 +243,6 @@ public:
data().gradExact( &x[ 0 ], &grad[ i ][ 0 ] );
}
void jacobian(const DomainType& x,
JacobianRangeType& grad) const
{
gradient( x, grad );
}
/**
* @brief latex output for EocOutput
*/
......
......@@ -4,7 +4,14 @@
#define FEMHOWTO_POISSONSTEPPER_HH
#include <config.h>
#define WANT_ISTL 1
//#define WANT_ISTL 1
#ifndef NDEBUG
// enable fvector and fmatrix checking
#define DUNE_ISTL_WITH_CHECKING
#endif
#define PROBLEMTRAITS_HAVE_STEPPERTYPE
#include <dune/fem-dg/main/codegen.hh>
#include "passtraits.hh"
......@@ -198,7 +205,4 @@ struct ProblemGenerator
return new Dune :: PoissonProblem< GridType > ( probNr );
}
};
// include elliptic stepper
#include <dune/fem-dg/stepper/ellipt.hh>
#endif // FEMHOWTO_POISSONSTEPPER_HH
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