Skip to content

Commit 65e4e51

Browse files
author
hbagheri
committed
Update HighsIisInfo bindings
1 parent 26ea7e4 commit 65e4e51

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

highs/highs_bindings.cpp

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1583,8 +1583,13 @@ PYBIND11_MODULE(_core, m, py::mod_gil_not_used()) {
15831583
.def_readwrite("row_bound_dn", &HighsRanging::row_bound_dn);
15841584
py::class_<HighsIisInfo>(m, "HighsIisInfo", py::module_local())
15851585
.def(py::init<>())
1586-
.def_readwrite("simplex_time", &HighsIisInfo::simplex_time)
1587-
.def_readwrite("simplex_iterations", &HighsIisInfo::simplex_iterations);
1586+
.def_readwrite("num_lp_solved", &HighsIisInfo::num_lp_solved)
1587+
.def_readwrite("sum_simplex_iteration_counts", &HighsIisInfo::sum_simplex_iteration_counts)
1588+
.def_readwrite("min_simplex_iteration_count", &HighsIisInfo::min_simplex_iteration_count)
1589+
.def_readwrite("max_simplex_iteration_count", &HighsIisInfo::max_simplex_iteration_count)
1590+
.def_readwrite("sum_simplex_times", &HighsIisInfo::sum_simplex_times)
1591+
.def_readwrite("min_simplex_time", &HighsIisInfo::min_simplex_time)
1592+
.def_readwrite("max_simplex_time", &HighsIisInfo::max_simplex_time);
15881593
py::class_<HighsLinearObjective>(m, "HighsLinearObjective",
15891594
py::module_local())
15901595
.def(py::init<>())

0 commit comments

Comments
 (0)