16 template <
typename TCELL>
    22     static constexpr int8_t CELLTYPE_MIN = -127;
    23     static constexpr int8_t CELLTYPE_MAX = 127;
    24     static constexpr int8_t P2LTABLE_SIZE = CELLTYPE_MAX;
    25     static constexpr std::size_t LOGODDS_LUT_ENTRIES = 1 << 8;
    30     static constexpr int16_t CELLTYPE_MIN = -32767;
    31     static constexpr int16_t CELLTYPE_MAX = 32767;
    32     static constexpr int16_t P2LTABLE_SIZE = CELLTYPE_MAX;
    33     static constexpr std::size_t LOGODDS_LUT_ENTRIES = 1 << 16;