pub trait MarlinMode: Clone + Debug + 'static + Sync + Send {
    const RECURSION: bool;
    const ZK: bool;
}
Expand description

A trait to specify the Marlin mode.

Associated Constants

Specifies whether this is for a recursive proof of at least depth-1.

Implementors