Skip to content

Commit f53f570

Browse files
committed
Update
1 parent 01b7306 commit f53f570

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/hipo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ jobs:
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

check/TestCallbacks.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
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

1313
const double egout_optimal_objective = 568.1007;
1414
const 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;

0 commit comments

Comments
 (0)