pub mod air;
pub mod columns;
pub mod event;
pub mod trace;
pub use event::*;
/// The maximum log degree of the CPU chip to avoid lookup multiplicity overflow.
pub const MAX_CPU_LOG_DEGREE: usize = 22;
/// A chip that implements the CPU.
#[derive(Default)]
pub struct CpuChip;