halo2_axiom/plonk/
vanishing.rs

1
2
3
4
5
6
7
8
9
10
11
use std::marker::PhantomData;

use crate::arithmetic::CurveAffine;

mod prover;
mod verifier;

/// A vanishing argument.
pub(crate) struct Argument<C: CurveAffine> {
    _marker: PhantomData<C>,
}