Skip to content

Commit

Permalink
fix: increase N_max in Zeromorph (#6415)
Browse files Browse the repository at this point in the history
To avoid edge case in `batch_mul` of vanilla Ultra we temporarily
switched to naive muls in the folding recursive verifier circuit
arithmetised with Ultra which causes an increase by a factor of 2. Hence
we need to increase the maximum size of a circuit that can be proven
with Zeromorph.
  • Loading branch information
maramihali committed May 16, 2024
1 parent ad73061 commit 9e643b4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ template <typename PCS> class ZeroMorphProver_ {

// TODO(#742): Set this N_max to be the number of G1 elements in the mocked zeromorph SRS once it's in place.
// (Then, eventually, set it based on the real SRS). For now we set it to be large but more or less arbitrary.
static const size_t N_max = 1 << 22;
static const size_t N_max = 1 << 23;

public:
/**
Expand Down

0 comments on commit 9e643b4

Please sign in to comment.