Skip to content

Commit b02288d

Browse files
committed
solveLpRaphael now has comments about things to be done, and sets model_status = HighsModelStatus::kSolveError
1 parent 6bd828b commit b02288d

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/pdlp/raphael/Solver.cpp

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,16 @@ HighsStatus solveLpRaphael(const HighsOptions& options, HighsTimer& timer,
4646
printf("Standard form LP has %d columns, %d rows and %d nonzeros\n",
4747
int(num_col), int(num_row), int(num_nz));
4848

49+
// Now solve the LP in standard form using PDLP
50+
51+
// Once solved, the solution for the LP in standard form obtained
52+
// with PDLP needs to be converted to a solution to the original
53+
// LP. Do this with a call in the following line to be written by
54+
// Julian
55+
56+
// For the moment, return the model status as kSolveError, and HiGHS
57+
// status as error, so HiGHS doesn't expect anything in terms of a
58+
// primal or dual solution
59+
model_status = HighsModelStatus::kSolveError;
4960
return HighsStatus::kError;
5061
}

0 commit comments

Comments
 (0)