diff --git a/src/circuit.rs b/src/circuit.rs index a963d89f..4f0bf755 100644 --- a/src/circuit.rs +++ b/src/circuit.rs @@ -87,22 +87,6 @@ pub struct Cell { column: Column, } -/// A structure containing a cell and its assigned value. -#[derive(Clone, Debug)] -pub struct CellValue { - /// The cell of this `CellValue` - pub cell: Cell, - /// The value assigned to this `CellValue` - pub value: Option, -} - -impl CellValue { - /// Construct a `CellValue`. - pub fn new(cell: Cell, value: Option) -> Self { - CellValue { cell, value } - } -} - /// A region of the circuit in which a [`Chip`] can assign cells. /// /// Inside a region, the chip may freely use relative offsets; the [`Layouter`] will