Skip to content

Commit

Permalink
test(zk): increase max extended degree for MultiLookupCircuit
Browse files Browse the repository at this point in the history
`MultiLookupCircuit` to be introduced in the following commit requires 2^8
`kMaxExtendedDomainSize`.
  • Loading branch information
Insun35 committed Jun 13, 2024
1 parent 9bc4f3e commit 9ead80b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tachyon/zk/plonk/halo2/prover_test.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace tachyon::zk::plonk::halo2 {

constexpr size_t kMaxDegree = (size_t{1} << 5) - 1;
constexpr size_t kMaxDomainSize = kMaxDegree + 1;
constexpr size_t kMaxExtendedDegree = (size_t{1} << 7) - 1;
constexpr size_t kMaxExtendedDegree = (size_t{1} << 8) - 1;
constexpr size_t kMaxExtendedDomainSize = kMaxExtendedDegree + 1;

template <typename PCS, typename LS>
Expand Down

0 comments on commit 9ead80b

Please sign in to comment.