* @brief Small transposition table for double dummy solver. * * TransTableS implements a small, memory-constrained transposition table * used to cache and retrieve results during double dummy bridge analysis. * It is designed for environments with limited memory resources and provides * similar lookup and caching functionality as TransTableL, but with a smaller footprint. */
| 67 | * similar lookup and caching functionality as TransTableL, but with a smaller footprint. |
| 68 | */ |
| 69 | TransTableS::TransTableS() |
| 70 | { |
| 71 | // Ensure the table is built once. |
| 72 | (void)tt_lowest_rank_table(); |
| 73 | tt_in_use_ = 0; |
| 74 | } |
| 75 | |
| 76 | |
| 77 | /** |
nothing calls this directly
no test coverage detected