use crate::mul::ntt::{Prime, NUM_PRIMES};
pub const MAX_ORDER: u32 = 57;
#[allow(dead_code)]
pub const PRIMES: [Prime; NUM_PRIMES] = [
Prime {
prime: 0xbe00000000000001,
max_order_root: 0x37,
},
Prime {
prime: 0xd800000000000001,
max_order_root: 0x40,
},
Prime {
prime: 0xf600000000000001,
max_order_root: 0x1ed,
},
];