From f08d47b7d99983b854edbbdd100181f4660b563f Mon Sep 17 00:00:00 2001 From: wborgeaud Date: Mon, 9 Aug 2021 18:43:12 +0200 Subject: [PATCH] Update comment --- src/gates/gate_tree.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gates/gate_tree.rs b/src/gates/gate_tree.rs index 9badc207..4b0a541a 100644 --- a/src/gates/gate_tree.rs +++ b/src/gates/gate_tree.rs @@ -64,7 +64,7 @@ impl, const D: usize> Tree> { gates.sort_unstable_by_key(|g| (-(g.0.degree() as isize), -(g.0.num_constants() as isize))); for max_degree_bits in 1..10 { - // The quotient polynomials are padded to the next power of 2 in `compute_vanishig_polys`. + // The quotient polynomials are padded to the next power of 2 in `compute_quotient_polys`. // So we can restrict our search space by setting `max_degree` to 1 + a power of 2. let max_degree = 1 << max_degree_bits + 1; for max_constants in 1..100 {