| 57 | |
| 58 | |
| 59 | double Memory::MemoryInUseMB(const unsigned /*thrId*/) const |
| 60 | { |
| 61 | // We can only account for the static RelRanksType footprint here. Any |
| 62 | // transposition table memory is owned by SolverContext/transposition |
| 63 | // table instances and must be queried via those contexts when available. |
| 64 | return 8192. * sizeof(RelRanksType) / static_cast<double>(1024.); |
| 65 | } |
| 66 | |
| 67 | |
| 68 | std::string Memory::ThreadSize(const unsigned thrId) const |
nothing calls this directly
no outgoing calls
no test coverage detected