| 65 | |
| 66 | struct Pooler { |
| 67 | Pooler(std::string mode, uint32_t windows_cnt, std::string acc_specifier) |
| 68 | : m_mode(mode), |
| 69 | m_windows_cnt(windows_cnt), |
| 70 | m_acc_specifier(acc_specifier){}; |
| 71 | |
| 72 | std::string gen_dep() { |
| 73 | if (m_mode == "MAX") { |
nothing calls this directly
no outgoing calls
no test coverage detected