@@ -2120,7 +2120,7 @@ IterationStats AddWorkStats(IterationStats stats,
2120
2120
// Accumulates and returns the work (`iteration_number`,
2121
2121
// `cumulative_kkt_matrix_passes`, `cumulative_rejected_steps`, and
2122
2122
// `cumulative_time_sec`) from `solve_log.feasibility_polishing_details`.
2123
- IterationStats WorkFromFeasiblityPolishing (const SolveLog& solve_log) {
2123
+ IterationStats WorkFromFeasibilityPolishing (const SolveLog& solve_log) {
2124
2124
IterationStats result;
2125
2125
for (const FeasibilityPolishingDetails& feasibility_polishing_detail :
2126
2126
solve_log.feasibility_polishing_details ()) {
@@ -2413,7 +2413,7 @@ InnerStepOutcome Solver::TakeConstantSizeStep() {
2413
2413
IterationStats Solver::TotalWorkSoFar (const SolveLog& solve_log) const {
2414
2414
IterationStats stats = CreateSimpleIterationStats (RESTART_CHOICE_NO_RESTART);
2415
2415
IterationStats full_stats =
2416
- AddWorkStats (stats, WorkFromFeasiblityPolishing (solve_log));
2416
+ AddWorkStats (stats, WorkFromFeasibilityPolishing (solve_log));
2417
2417
return full_stats;
2418
2418
}
2419
2419
@@ -2717,7 +2717,7 @@ SolverResult Solver::Solve(const IterationType iteration_type,
2717
2717
num_rejected_steps_ = 0 ;
2718
2718
2719
2719
IterationStats work_from_feasibility_polishing =
2720
- WorkFromFeasiblityPolishing (solve_log);
2720
+ WorkFromFeasibilityPolishing (solve_log);
2721
2721
for (iterations_completed_ = 0 ;; ++iterations_completed_) {
2722
2722
// This code performs the logic of the major iterations and termination
2723
2723
// checks. It may modify the current solution and primal weight (e.g., when
@@ -2750,7 +2750,7 @@ SolverResult Solver::Solve(const IterationType iteration_type,
2750
2750
}
2751
2751
next_feasibility_polishing_iteration *= 2 ;
2752
2752
// Update work to include new feasibility phases.
2753
- work_from_feasibility_polishing = WorkFromFeasiblityPolishing (solve_log);
2753
+ work_from_feasibility_polishing = WorkFromFeasibilityPolishing (solve_log);
2754
2754
}
2755
2755
2756
2756
// TODO(user): If we use a step rule that could reject many steps in a
0 commit comments