Skip to content

Commit c3b8e3c

Browse files
author
Apostolos Chalkis
committed
minor changes
1 parent 13809c3 commit c3b8e3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/preprocess/analytic_center_linear_ineq.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,11 @@ std::tuple<VT, bool> analytic_center_linear_ineq(MT const& A, VT const& b,
113113
get_hessian_grad_logbarrier<MT, VT, NT>(A, A_trans, b, x, Ax, H, grad, b_Ax);
114114
grad_err = grad.norm();
115115

116-
if(iter >= max_iters || grad_err <= grad_err_tol || rel_pos_err <= rel_pos_err_tol) {
116+
if (iter >= max_iters || grad_err <= grad_err_tol || rel_pos_err <= rel_pos_err_tol) {
117117
converged = true;
118118
break;
119119
}
120-
} while(true);
120+
} while (true);
121121

122122
return std::make_tuple(x, converged);
123123
}

0 commit comments

Comments
 (0)