| 68 | } |
| 69 | |
| 70 | void problem_cache::insert(const std::string& name, const value& problem, const value& solution) |
| 71 | { |
| 72 | assert(not solution.is_null()); |
| 73 | cache[create_key(name, problem)] = solution; |
| 74 | } |
| 75 | |
| 76 | void problem_cache::mark(const std::string& name, const value& problem) |
| 77 | { |
no test coverage detected