Skip to content

Commit

Permalink
accelerate default if present
Browse files Browse the repository at this point in the history
  • Loading branch information
teseoch committed Jun 12, 2024
1 parent c1fbc03 commit 58acb9d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/polysolve/linear/Solver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -528,6 +528,9 @@ namespace polysolve::linear
#ifdef POLYSOLVE_WITH_PARDISO
return "Pardiso";
#else
#ifdef POLYSOLVE_WITH_ACCELERATE
return "Eigen::AccelerateLDLT";
#else
#ifdef POLYSOLVE_WITH_HYPRE
return "Hypre";
#else
Expand Down

0 comments on commit 58acb9d

Please sign in to comment.