| 568 | } |
| 569 | |
| 570 | inline double getWallTime() { |
| 571 | using namespace std::chrono; |
| 572 | return duration_cast<duration<double> >( |
| 573 | std::chrono::high_resolution_clock::now().time_since_epoch()) |
| 574 | .count(); |
| 575 | } |
| 576 | |
| 577 | TEST_CASE("efficient-add-row", "[highs_filereader]") { |
| 578 | std::string filename; |
no test coverage detected