1
2
3
4
5
6
7
8
9
10
11
12
13
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;