1use crate::model::BitwiseModel;
23pub struct CombiningModel {
4pub model: BitwiseModel,
5// length of the table_comb cycle
6pub cycle: u16,
7// index of table_comb to cycle back to
8pub back: u16,
9// table for CRC combination
10pub table_comb: [u64; 67],
11}