add a noncopyable base class for decompositions

This commit is contained in:
Gael Guennebaud
2012-06-04 13:21:15 +02:00
parent 1b20e16546
commit a2ae063491
5 changed files with 19 additions and 4 deletions

View File

@@ -303,7 +303,7 @@ MappedSparseMatrix<Scalar,Flags,Index> map_superlu(SluMatrix& sluMat)
* \brief The base class for the direct and incomplete LU factorization of SuperLU
*/
template<typename _MatrixType, typename Derived>
class SuperLUBase
class SuperLUBase : internal::noncopyable
{
public:
typedef _MatrixType MatrixType;