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

@@ -136,7 +136,7 @@ inline int umfpack_get_determinant(std::complex<double> *Mx, double *Ex, void *N
* \sa \ref TutorialSparseDirectSolvers
*/
template<typename _MatrixType>
class UmfPackLU
class UmfPackLU : internal::noncopyable
{
public:
typedef _MatrixType MatrixType;