aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/PaStiXSupport
diff options
context:
space:
mode:
authorGravatar Desire NUENTSA <desire.nuentsa_wakam@inria.fr>2012-03-29 19:19:12 +0200
committerGravatar Desire NUENTSA <desire.nuentsa_wakam@inria.fr>2012-03-29 19:19:12 +0200
commit5dbb64619013dd3f9558aed2b7b0f2a712f34c22 (patch)
tree2f4ccb5d0356ce1843d357fe4c1001dfa584e960 /Eigen/src/PaStiXSupport
parent2d35f88bcf4ffb99e4010a4bd6029bfe01d6527d (diff)
Add private copy constructors to sparse solvers backends
Diffstat (limited to 'Eigen/src/PaStiXSupport')
-rw-r--r--Eigen/src/PaStiXSupport/PaStiXSupport.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/Eigen/src/PaStiXSupport/PaStiXSupport.h b/Eigen/src/PaStiXSupport/PaStiXSupport.h
index 7989a92ca..6040b8f00 100644
--- a/Eigen/src/PaStiXSupport/PaStiXSupport.h
+++ b/Eigen/src/PaStiXSupport/PaStiXSupport.h
@@ -339,6 +339,9 @@ class PastixBase
mutable int m_amalgamation; // level of amalgamation
mutable int m_size; // Size of the matrix
+ private:
+ PastixBase(PastixBase& ) {}
+
};
/** Initialize the PaStiX data structure.
@@ -595,6 +598,9 @@ class PastixLU : public PastixBase< PastixLU<_MatrixType> >
using Base::m_dparm;
using Base::m_StrMatTrans;
using Base::m_hasTranspose;
+
+ private:
+ PastixLU(PastixLU& ) {}
};
/** \ingroup PaStiXSupport_Module
@@ -674,6 +680,9 @@ class PastixLLT : public PastixBase< PastixLLT<_MatrixType, _UpLo> >
}
protected:
using Base::m_iparm;
+
+ private:
+ PastixLLT(PastixLLT& ) {}
};
/** \ingroup PaStiXSupport_Module
@@ -756,6 +765,9 @@ public:
protected:
using Base::m_iparm;
+
+ private:
+ PastixLDLT(PastixLDLT& ) {}
};
namespace internal {