Skip to content

Commit

Permalink
[ldlt-allocator] rename LDLTChoice::BLOCKED to ::BLOCKSPARSE
Browse files Browse the repository at this point in the history
  • Loading branch information
ManifoldFR committed Dec 4, 2023
1 parent 47ab413 commit 7817d47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/proxnlp/ldlt-allocator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ enum class LDLTChoice {
/// Use our dense LDLT.
DENSE,
/// Use blocked LDLT.
BLOCKED,
BLOCKSPARSE,
/// Use Eigen's implementation.
EIGEN,
/// Use Proxsuite's LDLT.
Expand Down
2 changes: 1 addition & 1 deletion python/expose-solver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ void exposeSolver() {

bp::enum_<LDLTChoice>("LDLTChoice", "Choice of LDLT solver.")
.value("LDLT_DENSE", LDLTChoice::DENSE)
.value("LDLT_BLOCKED", LDLTChoice::BLOCKED)
.value("LDLT_BLOCKSPARSE", LDLTChoice::BLOCKSPARSE)
.value("LDLT_EIGEN", LDLTChoice::EIGEN)
.value("LDLT_PROXSUITE", LDLTChoice::PROXSUITE)
.export_values();
Expand Down

0 comments on commit 7817d47

Please sign in to comment.