Skip to content

Commit

Permalink
prefer linear solvers such as MUMPS over SPRAL (#677)
Browse files Browse the repository at this point in the history
- not clear yet how stable Spral actually is
  • Loading branch information
amontoison authored Jun 7, 2023
1 parent 02ce615 commit 0e79b2f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ More detailed information about incremental changes can be found in the

## 3.14

### 3.14.13 (2023-xx-yy)

- Reduced priority for making Spral the default value for option linear_solver [#677].

### 3.14.12 (2023-04-05)

- Fix that a source file was installed and install more header files.
Expand Down
8 changes: 4 additions & 4 deletions src/Algorithm/IpAlgBuilder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -225,10 +225,6 @@ void AlgorithmBuilder::RegisterOptions(
{
defaultsolver = "pardiso";
}
else if( availablesolverslinked & IPOPTLINEARSOLVER_SPRAL )
{
defaultsolver = "spral";
}
else if( availablesolverslinked & IPOPTLINEARSOLVER_WSMP )
{
defaultsolver = "wsmp";
Expand All @@ -241,6 +237,10 @@ void AlgorithmBuilder::RegisterOptions(
{
defaultsolver = "pardisomkl";
}
else if( availablesolverslinked & IPOPTLINEARSOLVER_SPRAL )
{
defaultsolver = "spral";
}
else if( availablesolverslinked & IPOPTLINEARSOLVER_MA77 )
{
defaultsolver = "ma77";
Expand Down

0 comments on commit 0e79b2f

Please sign in to comment.