File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -162,5 +162,4 @@ TEST_CASE("test-2087", "[highs_ipm]") {
162162 REQUIRE (first_ipm_iteration_count == h.getInfo ().ipm_iteration_count );
163163
164164 h.resetGlobalScheduler (true );
165-
166165}
Original file line number Diff line number Diff line change 88#include " lp_data/HighsStatus.h"
99#include " parallel/HighsParallel.h"
1010
11+ #include " Highs.h"
12+
1113// Example for using IPX from its C++ interface. The program solves the Netlib
1214// problem afiro.
1315
@@ -45,6 +47,7 @@ TEST_CASE("test-ipx", "[highs_ipx]") {
4547 ipx::Parameters parameters;
4648 if (!dev_run) parameters.display = 0 ;
4749 parameters.highs_logging = false ;
50+ parameters.timeless_log = false ;
4851 lps.SetParameters (parameters);
4952
5053 // Solve the LP.
@@ -87,4 +90,8 @@ TEST_CASE("test-ipx", "[highs_ipx]") {
8790 REQUIRE (fabs (ipx_col_value[11 ] - 339.9 ) < 1 );
8891
8992 (void )(info); // surpress unused variable.
93+
94+ // hack to reset global scheduler
95+ Highs h;
96+ h.resetGlobalScheduler (true );
9097}
You can’t perform that action at this time.
0 commit comments