Barretenberg
The ZK-SNARK library at the core of Aztec
Loading...
Searching...
No Matches
check_circuit.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <cstdint>
4
6
8
9// This is a version of check circuit that runs on the prover polynomials.
10// It is the closest to "real proving" that we can get without actually running the prover.
11void run_check_circuit(AvmFlavor::ProverPolynomials& polys, size_t num_rows, bool skippable_enabled = true);
12
13} // namespace bb::avm2::constraining
void run_check_circuit(AvmFlavor::ProverPolynomials &polys, size_t num_rows, bool skippable_enabled)