| 37 | namespace |
| 38 | { |
| 39 | mlgo::MLGOHeuristics populate_mlgo(const char *filename) |
| 40 | { |
| 41 | bool status = false; |
| 42 | mlgo::MLGOHeuristics heuristics; |
| 43 | |
| 44 | if (filename != nullptr) |
| 45 | { |
| 46 | status = heuristics.reload_from_file(filename); |
| 47 | } |
| 48 | return status ? std::move(heuristics) : mlgo::MLGOHeuristics(); |
| 49 | } |
| 50 | } // namespace |
| 51 | |
| 52 | ClContext::ClContext(const AclContextOptions *options) |
no test coverage detected