File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 6767 build/${{ matrix.build_type }}/bin/highs --solver=hipo check/instances/flugpl.mps
6868 - run : |
6969 cd build
70- ctest -C ${{ matrix.build_type }} --parallel -- timeout 300 --output-on-failure --no-tests=error
70+ ctest -C ${{ matrix.build_type }} --timeout 300 --output-on-failure --no-tests=error
Original file line number Diff line number Diff line change 88#include " lp_data/HConst.h"
99#include " lp_data/HighsCallback.h"
1010
11- const bool dev_run = false ;
11+ const bool dev_run = true ;
1212
1313const double egout_optimal_objective = 568.1007 ;
1414const double egout_objective_target = 610 ;
@@ -505,12 +505,14 @@ static void runMipUserSolutionTest(
505505 assert (model.size () == require_origin.size ());
506506 Highs highs;
507507 highs.setOptionValue (" output_flag" , dev_run);
508+ highs.setOptionValue (" log_dev_level" , 5 );
508509 highs.setOptionValue (" mip_rel_gap" , 0 );
509510 HighsInt from_model = 0 ;
510511 HighsInt to_model = HighsInt (model.size ());
511512 for (HighsInt iModel = from_model; iModel < to_model; iModel++) {
512513 const std::string filename =
513514 std::string (HIGHS_DIR) + " /check/instances/" + model[iModel] + " .mps" ;
515+ std::cout << filename << std::endl;
514516 highs.readModel (filename);
515517 highs.run ();
516518 std::vector<double > optimal_solution = highs.getSolution ().col_value ;
You can’t perform that action at this time.
0 commit comments