Skip to content

Commit ac1a5ee

Browse files
committed
HiPO now setting correct IPX time limit
1 parent 7a6bcf7 commit ac1a5ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

highs/ipm/hipo/ipm/Solver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ bool Solver::prepareIpx() {
187187
ipx_param.ipm_feasibility_tol = options_.feasibility_tol;
188188
ipx_param.ipm_optimality_tol = options_.optimality_tol;
189189
ipx_param.start_crossover_tol = options_.crossover_tol;
190-
ipx_param.time_limit = options_.time_limit - control_.elapsed();
190+
ipx_param.time_limit = options_.time_limit;
191191
ipx_param.ipm_maxiter = options_.max_iter - iter_;
192192
ipx_lps_.SetParameters(ipx_param);
193193

0 commit comments

Comments
 (0)