Skip to content

Commit

Permalink
Merge pull request #2170 from ERGO-Code/fix-2169
Browse files Browse the repository at this point in the history
Added `kImplicitInteger` to definition of `HighsVarType` for `highspy`
  • Loading branch information
jajhall authored Feb 8, 2025
2 parents eee9e39 + 60df046 commit 9456074
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/highs_bindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -947,7 +947,8 @@ PYBIND11_MODULE(_core, m, py::mod_gil_not_used()) {
.value("kContinuous", HighsVarType::kContinuous)
.value("kInteger", HighsVarType::kInteger)
.value("kSemiContinuous", HighsVarType::kSemiContinuous)
.value("kSemiInteger", HighsVarType::kSemiInteger);
.value("kSemiInteger", HighsVarType::kSemiInteger)
.value("kImplicitInteger", HighsVarType::kImplicitInteger);
py::enum_<HighsOptionType>(m, "HighsOptionType", py::module_local())
.value("kBool", HighsOptionType::kBool)
.value("kInt", HighsOptionType::kInt)
Expand Down

0 comments on commit 9456074

Please sign in to comment.