Skip to content

Commit

Permalink
fix issues with supernodal algorithm
Browse files Browse the repository at this point in the history
  • Loading branch information
David Jourdan committed Jul 24, 2024
1 parent 1679425 commit e2fe952
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/solvers.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ using LUSolver = Eigen::PardisoLU<Eigen::SparseMatrix<double>>;
#include <Eigen/CholmodSupport>
#include <Eigen/UmfPackSupport>
using LDLTSolver = Eigen::CholmodSimplicialLDLT<Eigen::SparseMatrix<double>>;
using LLTSolver = Eigen::CholmodSupernodalLLT<Eigen::SparseMatrix<double>>;
using LLTSolver = Eigen::CholmodSimplicialLLT<Eigen::SparseMatrix<double>>;
using LUSolver = Eigen::UmfPackLU<Eigen::SparseMatrix<double>>;
#else
#include<Eigen/SparseCholesky>
Expand Down

0 comments on commit e2fe952

Please sign in to comment.