1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::circuit::{Cell, ColumnMid};

#[derive(Clone, Debug)]
pub struct AssemblyMid {
    pub copies: Vec<(Cell, Cell)>,
}

/// A permutation argument.
#[derive(Debug, Clone)]
pub struct ArgumentMid {
    /// A sequence of columns involved in the argument.
    pub columns: Vec<ColumnMid>,
}