highs-sys 1.14.2

Rust binding for the HiGHS linear programming solver. See http://highs.dev.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#include "HCheckConfig.h"
#include "catch.hpp"
#include "lp_data/HighsLp.h"
#include "lp_data/HighsStatus.h"

const bool dev_run = false;

// No commas in test case name.
TEST_CASE("correct-print-status", "[highs_data]") {
  std::string str = highsStatusToString(HighsStatus::kOk);
  REQUIRE(str == "OK");
}