Skip to content
Snippets Groups Projects
Commit 732b4f81 authored by Dominic Kempf's avatar Dominic Kempf Committed by Markus Blatt
Browse files

prevent umfpack from using wrong constructor when calling with superlu constructor list

parent e05fa5d3
No related branches found
No related tags found
No related merge requests found
......@@ -199,8 +199,9 @@ namespace Dune {
/** @brief construct a solver object from a BCRSMatrix
* @param mat_ the matrix to solve for
* @param verbose [0..2] set the verbosity level, defaults to 0
* third param for compatibility with SuperLU constructor calls.
*/
UMFPack(const Matrix& mat_, int verbose=0)
UMFPack(const Matrix& mat_, int verbose=0, bool)
{
//check whether T is a supported type
static_assert((std::is_same<T,double>::value) || (std::is_same<T,std::complex<double> >::value),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment