From 60df046e4cec1f3cdf64ddfe9e8eb2d0334dccb8 Mon Sep 17 00:00:00 2001 From: JAJHall Date: Sat, 8 Feb 2025 16:59:41 +0000 Subject: [PATCH] Added kImplicitInteger to definition of HighsVarType for highspy --- src/highs_bindings.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)