@@ -154,8 +154,8 @@ HighsStatus solveLpIpx(const HighsOptions& options, HighsTimer& timer,
154154 std::vector<ipx::Int> Ap, Ai;
155155 std::vector<double > objective, col_lb, col_ub, Av, rhs;
156156 std::vector<char > constraint_type;
157- fillInIpxData (lp, num_col, num_row, offset, objective, col_lb, col_ub, Ap, Ai, Av,
158- rhs, constraint_type);
157+ fillInIpxData (lp, num_col, num_row, offset, objective, col_lb, col_ub, Ap, Ai,
158+ Av, rhs, constraint_type);
159159 highsLogUser (options.log_options , HighsLogType::kInfo ,
160160 " IPX model has %" HIGHSINT_FORMAT " rows, %" HIGHSINT_FORMAT
161161 " columns and %" HIGHSINT_FORMAT " nonzeros\n " ,
@@ -388,11 +388,10 @@ HighsStatus solveLpIpx(const HighsOptions& options, HighsTimer& timer,
388388}
389389
390390void fillInIpxData (const HighsLp& lp, ipx::Int& num_col, ipx::Int& num_row,
391- double & offset,
392- std::vector<double >& obj, std::vector<double >& col_lb,
393- std::vector<double >& col_ub, std::vector<ipx::Int>& Ap,
394- std::vector<ipx::Int>& Ai, std::vector<double >& Ax,
395- std::vector<double >& rhs,
391+ double & offset, std::vector<double >& obj,
392+ std::vector<double >& col_lb, std::vector<double >& col_ub,
393+ std::vector<ipx::Int>& Ap, std::vector<ipx::Int>& Ai,
394+ std::vector<double >& Ax, std::vector<double >& rhs,
396395 std::vector<char >& constraint_type) {
397396 num_col = lp.num_col_ ;
398397 num_row = lp.num_row_ ;
0 commit comments