| 341 | } |
| 342 | |
| 343 | auto ThreadMemoryUsed() -> double |
| 344 | { |
| 345 | // TODO: Only needed because SolverIF wants to set it. Avoid? |
| 346 | double memUsed = |
| 347 | 8192 * sizeof(RelRanksType) |
| 348 | / static_cast<double>(1024.); |
| 349 | |
| 350 | return memUsed; |
| 351 | } |
| 352 | |
| 353 | // --- MoveGenContext out-of-line definitions --- |
| 354 | // No TLS allocator shim required: move generation now runs without a global allocator hook. |
no outgoing calls
no test coverage detected