Skip to content

Commit

Permalink
fix: update add rows error message (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
seastian authored Dec 15, 2024
1 parent 9dcd473 commit b4521a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/highs-addon/src/solver.cc
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ void Solver::AddRows(const Napi::CallbackInfo& info) {
vals.Data()
);
if (status != HighsStatus::kOk) {
ThrowError(env, "Change columns cost failed");
ThrowError(env, "Adding rows failed");
return;
}
}
Expand Down

0 comments on commit b4521a9

Please sign in to comment.