We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9cd8198 + 03e1ad5 commit 5d33d27Copy full SHA for 5d33d27
1 file changed
highs/ipm/hipo/ipm/Solver.cpp
@@ -1096,7 +1096,7 @@ bool Solver::checkTermination() {
1096
}
1097
1098
} else {
1099
- terminate = checkTerminationKkt();
+ terminate = model_.qp() ? true : checkTerminationKkt();
1100
if (terminate) {
1101
assert(info_.status != kStatusPDFeas);
1102
logger_.print("=== Primal-dual feasible point found\n");
@@ -1112,7 +1112,7 @@ bool Solver::checkTerminationKkt() {
1112
if (model_.qp()) {
1113
// Not yet implemented for QP
1114
logger_.printInfo("kktCheck skipped for QP\n");
1115
- return true;
+ return false;
1116
1117
1118
// LP check
0 commit comments