@@ -2120,7 +2120,7 @@ IterationStats AddWorkStats(IterationStats stats,
21202120// Accumulates and returns the work (`iteration_number`,
21212121// `cumulative_kkt_matrix_passes`, `cumulative_rejected_steps`, and
21222122// `cumulative_time_sec`) from `solve_log.feasibility_polishing_details`.
2123- IterationStats WorkFromFeasiblityPolishing (const SolveLog& solve_log) {
2123+ IterationStats WorkFromFeasibilityPolishing (const SolveLog& solve_log) {
21242124 IterationStats result;
21252125 for (const FeasibilityPolishingDetails& feasibility_polishing_detail :
21262126 solve_log.feasibility_polishing_details ()) {
@@ -2413,7 +2413,7 @@ InnerStepOutcome Solver::TakeConstantSizeStep() {
24132413IterationStats Solver::TotalWorkSoFar (const SolveLog& solve_log) const {
24142414 IterationStats stats = CreateSimpleIterationStats (RESTART_CHOICE_NO_RESTART);
24152415 IterationStats full_stats =
2416- AddWorkStats (stats, WorkFromFeasiblityPolishing (solve_log));
2416+ AddWorkStats (stats, WorkFromFeasibilityPolishing (solve_log));
24172417 return full_stats;
24182418}
24192419
@@ -2717,7 +2717,7 @@ SolverResult Solver::Solve(const IterationType iteration_type,
27172717 num_rejected_steps_ = 0 ;
27182718
27192719 IterationStats work_from_feasibility_polishing =
2720- WorkFromFeasiblityPolishing (solve_log);
2720+ WorkFromFeasibilityPolishing (solve_log);
27212721 for (iterations_completed_ = 0 ;; ++iterations_completed_) {
27222722 // This code performs the logic of the major iterations and termination
27232723 // checks. It may modify the current solution and primal weight (e.g., when
@@ -2750,7 +2750,7 @@ SolverResult Solver::Solve(const IterationType iteration_type,
27502750 }
27512751 next_feasibility_polishing_iteration *= 2 ;
27522752 // Update work to include new feasibility phases.
2753- work_from_feasibility_polishing = WorkFromFeasiblityPolishing (solve_log);
2753+ work_from_feasibility_polishing = WorkFromFeasibilityPolishing (solve_log);
27542754 }
27552755
27562756 // TODO(user): If we use a step rule that could reject many steps in a
0 commit comments