From f2e9ca6494c5ec3cf515e7a1adcaac6c13969c64 Mon Sep 17 00:00:00 2001 From: Elias Pipping <elias.pipping@fu-berlin.de> Date: Mon, 31 Oct 2011 12:43:01 +0100 Subject: [PATCH] Do not supply default template arguments --- src/myconvexproblem.hh | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/myconvexproblem.hh b/src/myconvexproblem.hh index 34f0f0fe..24aa646d 100644 --- a/src/myconvexproblem.hh +++ b/src/myconvexproblem.hh @@ -3,8 +3,6 @@ #ifndef MY_CONVEX_PROBLEM_HH #define MY_CONVEX_PROBLEM_HH -#include <dune/istl/bcrsmatrix.hh> - #include <dune/tnnmg/problem-classes/nonlinearity.hh> /** \brief General convex problem for a Truncated Nonsmooth Newton Multigrid @@ -14,10 +12,7 @@ \tparam MatrixTypeTEMPLATE The type used for the matrix of the quadratic part */ -template <class NonlinearityTypeTEMPLATE = Nonlinearity< - Dune::FieldVector<double, 1>, Dune::FieldMatrix<double, 1, 1>>, - class MatrixTypeTEMPLATE = - Dune::BCRSMatrix<Dune::FieldMatrix<double, 1, 1>>> +template <class NonlinearityTypeTEMPLATE, class MatrixTypeTEMPLATE> class MyConvexProblem { public: typedef NonlinearityTypeTEMPLATE NonlinearityType; -- GitLab