//! Hardcoded circuit constants to be used when generating the prover circuits.
use Range;
/// Default range to be used for the `ArithmeticStark` table.
pub const DEFAULT_ARITHMETIC_RANGE: = 16..28;
/// Default range to be used for the `BytePackingStark` table.
pub const DEFAULT_BYTE_PACKING_RANGE: = 9..28;
/// Default range to be used for the `CpuStark` table.
pub const DEFAULT_CPU_RANGE: = 12..28;
/// Default range to be used for the `KeccakStark` table.
pub const DEFAULT_KECCAK_RANGE: = 14..25;
/// Default range to be used for the `KeccakSpongeStark` table.
pub const DEFAULT_KECCAK_SPONGE_RANGE: = 9..25;
/// Default range to be used for the `LogicStark` table.
pub const DEFAULT_LOGIC_RANGE: = 12..28;
/// Default range to be used for the `MemoryStark` table.
pub const DEFAULT_MEMORY_RANGE: = 17..30;