From f45554f5347b4f3159e3f1de58a74fdbb8bbbbf4 Mon Sep 17 00:00:00 2001 From: Alex Koshelev Date: Tue, 21 May 2024 10:03:40 -0700 Subject: [PATCH] Bring back comment about MAX_BREAKDOWNS --- ipa-core/src/protocol/ipa_prf/aggregation/step.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ipa-core/src/protocol/ipa_prf/aggregation/step.rs b/ipa-core/src/protocol/ipa_prf/aggregation/step.rs index 8efb2c392..0984440d0 100644 --- a/ipa-core/src/protocol/ipa_prf/aggregation/step.rs +++ b/ipa-core/src/protocol/ipa_prf/aggregation/step.rs @@ -8,6 +8,8 @@ pub(crate) enum AggregationStep { Aggregate(usize), } +/// the number of steps must be kept in sync with `MAX_BREAKDOWNS` defined +/// [here](https://tinyurl.com/mwnbbnj6) #[derive(CompactStep)] #[step(count = 512, child = crate::protocol::boolean::step::EightBitStep, name = "b")] pub struct BucketStep(usize);