Skip to content

Commit 049575b

Browse files
committed
Merge branch 'hi-pdlp' of https://github.com/ERGO-Code/HiGHS into hi-pdlp
2 parents 211dd33 + 8f2df6d commit 049575b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

highs/pdlp/hipdlp/pdhg.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -452,9 +452,9 @@ void PDLPSolver::solve(std::vector<double>& x, std::vector<double>& y) {
452452
}
453453

454454
// Perform the primal weight update using z^{n,0} and z^{n-1,0}
455-
// PDHG_Compute_Step_Size_Ratio(working_params,
456-
// restart_x, restart_y,
457-
// x_at_last_restart_, y_at_last_restart_);
455+
PDHG_Compute_Step_Size_Ratio(working_params,
456+
restart_x, restart_y,
457+
x_at_last_restart_, y_at_last_restart_);
458458

459459
x_at_last_restart_ = restart_x; // Current becomes the new last
460460
y_at_last_restart_ = restart_y;

0 commit comments

Comments
 (0)