Skip to content

Commit

Permalink
explicitly define storage order for eigen matrices that interface kra…
Browse files Browse the repository at this point in the history
…tos matrices
  • Loading branch information
armingeiser committed Apr 14, 2021
1 parent f37a5dd commit 7a8792e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class EigenDenseBDCSVD : public DenseSingularValueDecomposition<TDenseSpace>
typedef typename TDenseSpace::MatrixType MatrixType;

using EigenVector = Eigen::Matrix<DataType, Eigen::Dynamic, 1>;
using EigenMatrix = Eigen::Matrix<DataType, Eigen::Dynamic, Eigen::Dynamic>;
using EigenMatrix = Eigen::Matrix<DataType, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor>;
using DecompositionOptions = Eigen::DecompositionOptions;

///@}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class EigenDenseJacobiSVD : public DenseSingularValueDecomposition<TDenseSpace>
typedef typename TDenseSpace::MatrixType MatrixType;

using EigenVector = Eigen::Matrix<DataType, Eigen::Dynamic, 1>;
using EigenMatrix = Eigen::Matrix<DataType, Eigen::Dynamic, Eigen::Dynamic>;
using EigenMatrix = Eigen::Matrix<DataType, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor>;
using DecompositionOptions = Eigen::DecompositionOptions;

///@}
Expand Down

0 comments on commit 7a8792e

Please sign in to comment.