Skip to content

Commit

Permalink
Added kImplicitInteger to definition of HighsVarType for highspy
Browse files Browse the repository at this point in the history
  • Loading branch information
jajhall committed Feb 8, 2025
1 parent eee9e39 commit 60df046
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 60df046

Please sign in to comment.