Skip to content

Commit

Permalink
Merge branch 'master' into cornu/less_sparse13
Browse files Browse the repository at this point in the history
  • Loading branch information
alkino authored Dec 18, 2023
2 parents cabdebc + c483af8 commit 38f23cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion external/eigen
Submodule eigen updated from 328b5f to 314739
2 changes: 1 addition & 1 deletion src/ivoc/ocmatrix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ void OcFullMatrix::symmeigen(Matrix* mout, Vect* vout) {

void OcFullMatrix::svd1(Matrix* u, Matrix* v, Vect* d) {
auto v1 = Vect2VEC(d);
Eigen::JacobiSVD<Eigen::MatrixXd, Eigen::ComputeFullU | Eigen::ComputeFullV> svd(m_);
Eigen::JacobiSVD<Eigen::MatrixXd> svd(m_, Eigen::ComputeFullU | Eigen::ComputeFullV);
v1 = svd.singularValues();
if (u) {
u->full()->m_ = svd.matrixU().transpose();
Expand Down

0 comments on commit 38f23cb

Please sign in to comment.