Skip to content

Commit 8443d8b

Browse files
committed
Corrected highs_bindings.cpp
1 parent 5ebc65d commit 8443d8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

highs/highs_bindings.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1506,7 +1506,7 @@ PYBIND11_MODULE(_core, m, py::mod_gil_not_used()) {
15061506
.def_readwrite("col_bound", &HighsIis::col_bound_)
15071507
.def_readwrite("row_bound", &HighsIis::row_bound_)
15081508
.def_readwrite("info", &HighsIis::info_)
1509-
.def_readwrite("model", &HighsModel::model_);
1509+
.def_readwrite("model", &HighsIis::model_);
15101510
// structs
15111511
py::class_<HighsSolution>(m, "HighsSolution", py::module_local())
15121512
.def(py::init<>())

0 commit comments

Comments
 (0)