can get Q too

This commit is contained in:
Alex Vlasov 2019-02-05 19:46:00 +03:00
parent e5bc2c197f
commit 9cb62348fb

@ -255,6 +255,10 @@ impl<E: Engine, C: Circuit<E>, S: SynthesisDriver> MultiVerifier<E, C, S> {
return self.n;
}
pub fn get_q(&self) -> usize {
return self.q;
}
pub fn check_all(self) -> bool {
self.batch.check_all()
}