use Eigen defaults column major store order
This commit is contained in:
parent
2c0638aa8f
commit
f405973736
1 changed files with 2 additions and 2 deletions
|
|
@ -83,8 +83,8 @@ class edoNormalMulti : public edoDistrib< EOT >
|
|||
{
|
||||
public:
|
||||
typedef typename EOT::AtomType AtomType;
|
||||
typedef Eigen::Matrix< AtomType, 1, Eigen::Dynamic, Eigen::RowMajor> Vector;
|
||||
typedef Eigen::Matrix< AtomType, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor> Matrix;
|
||||
typedef Eigen::Matrix< AtomType, Eigen::Dynamic, 1> Vector;
|
||||
typedef Eigen::Matrix< AtomType, Eigen::Dynamic, Eigen::Dynamic> Matrix;
|
||||
|
||||
edoNormalMulti(
|
||||
const Vector & mean,
|
||||
|
|
|
|||
Reference in a new issue