use crate::mul::ntt::{Prime, NUM_PRIMES};
pub const MAX_ORDER: u32 = 12;
#[allow(dead_code)]
pub const PRIMES: [Prime; NUM_PRIMES] = [
Prime {
prime: 0x3001,
max_order_root: 0x29,
},
Prime {
prime: 0xa001,
max_order_root: 0x1c,
},
Prime {
prime: 0xf001,
max_order_root: 0x13,
},
];