Skip to content

Commit

Permalink
MAINT: Remove unused variables from bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
HaoZeke committed Sep 16, 2024
1 parent 9056539 commit cca82f3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/highs_bindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ highs_getColEntries(Highs* h, HighsInt col) {

std::tuple<HighsStatus, double, double, HighsInt> highs_getRow(Highs* h,
HighsInt row) {
double cost, lower, upper;
double lower, upper;
HighsInt get_num_row;
HighsInt get_num_nz;
HighsInt row_ = static_cast<HighsInt>(row);
Expand All @@ -433,7 +433,6 @@ std::tuple<HighsStatus, double, double, HighsInt> highs_getRow(Highs* h,

std::tuple<HighsStatus, py::array_t<HighsInt>, py::array_t<double>>
highs_getRowEntries(Highs* h, HighsInt row) {
double cost, lower, upper;
HighsInt get_num_row;
HighsInt get_num_nz;
HighsInt row_ = static_cast<HighsInt>(row);
Expand Down

0 comments on commit cca82f3

Please sign in to comment.