diff --git a/src/highs_bindings.cpp b/src/highs_bindings.cpp index 2ea1c35817..a650071503 100644 --- a/src/highs_bindings.cpp +++ b/src/highs_bindings.cpp @@ -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_(m, "HighsOptionType", py::module_local()) .value("kBool", HighsOptionType::kBool) .value("kInt", HighsOptionType::kInt)