MCPcopy Create free account
hub / github.com/dds-bridge/dds / TransTableS

Method TransTableS

library/src/trans_table/trans_table_s.cpp:69–74  ·  view source on GitHub ↗

* @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. */

Source from the content-addressed store, hash-verified

67 * similar lookup and caching functionality as TransTableL, but with a smaller footprint.
68*/
69TransTableS::TransTableS()
70{
71 // Ensure the table is built once.
72 (void)tt_lowest_rank_table();
73 tt_in_use_ = 0;
74}
75
76
77/**

Callers

nothing calls this directly

Calls 1

tt_lowest_rank_tableFunction · 0.85

Tested by

no test coverage detected