Skip to content
Snippets Groups Projects
Commit 22a39c77 authored by Robert K's avatar Robert K Committed by Tobias Malkmus
Browse files

Change field type back to grid's ctype since we can use SPGrid to put Double

there.
parent e38c1f7c
No related branches found
No related tags found
No related merge requests found
......@@ -31,23 +31,17 @@ namespace Fem
* \ingroup EulerProblems
*/
#ifdef COUNT_FLOPS
typedef Double EulerRangeField ;
#else
typedef double EulerRangeField ;
#endif
template <class GridType>
class ProblemBase :
public EvolutionProblemInterface<
Dune::Fem::FunctionSpace< typename GridType::ctype,
EulerRangeField,
typename GridType::ctype,
GridType::dimensionworld, GridType::dimensionworld+2>,
false >
{
typedef EvolutionProblemInterface<
Dune::Fem::FunctionSpace< typename GridType::ctype,
EulerRangeField,
typename GridType::ctype,
GridType::dimensionworld, GridType::dimensionworld+2>,
false > BaseType ;
......
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