pub trait Construct: Sized {
    fn construct(vs: &[u64]) -> Self;

    fn n() -> usize { ... }
}
Expand description

Used to construct logical systems.

Required Methods

Creates a logical system out of proof arguments.

Provided Methods

Gets the number of bits in logical system.

Implementations on Foreign Types

Implementors