Skip to content

Commit

Permalink
fix: More conservative splitting
Browse files Browse the repository at this point in the history
  • Loading branch information
sp301415 committed Nov 21, 2024
1 parent 597dcf6 commit 9dde7e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions math/poly/poly_evaluator.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ const (
MinDegree = 1 << 4

// splitBound is denotes the maximum bits of N*B1*B2, where B1, B2 is the splitting bound of polynomial multiplication.
// Currently, this is set to 50, which gives failure rate less than 2^-73.
splitBound = 50
// Currently, this is set to 48, which gives failure rate less than 2^-284.
splitBound = 48
)

// Evaluator computes polynomial operations over the N-th cyclotomic ring.
Expand Down

0 comments on commit 9dde7e9

Please sign in to comment.