use row major everywhere with Eigen
This commit is contained in:
parent
f0564c233e
commit
f8bae61095
6 changed files with 21 additions and 11 deletions
|
|
@ -163,8 +163,10 @@ public:
|
|||
{
|
||||
public:
|
||||
typedef typename EOT::AtomType AtomType;
|
||||
typedef Eigen::Matrix< AtomType, Eigen::Dynamic, 1> Vector;
|
||||
typedef Eigen::Matrix< AtomType, Eigen::Dynamic, Eigen::Dynamic> Matrix;
|
||||
// typedef typename edoNormalMulti<AtomType>::Vector Vector;
|
||||
// typedef typename edoNormalMulti<AtomType>::Matrix Matrix;
|
||||
typedef Eigen::Matrix< AtomType, 1, Eigen::Dynamic, Eigen::RowMajor> Vector;
|
||||
typedef Eigen::Matrix< AtomType, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor> Matrix;
|
||||
|
||||
CovMatrix( const eoPop< EOT >& pop )
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue