From d5036425c7109eb7c4832d558cbe3ab133bcec65 Mon Sep 17 00:00:00 2001 From: Irakliy Khaburzaniya Date: Sat, 1 Feb 2025 12:00:44 -0800 Subject: [PATCH] updated changelog --- CHANGELOG.md | 4 ++++ air/src/proof/ood_frame.rs | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 626de2614..e13e11c61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## 0.12.0 (TBD) - [BREAKING] Added security estimate in unique decoding regime (#356). +- [BREAKING] Added option for algebraic batching to build DEPP polynomial (#357). +- [BREAKING] Updated serialization logic of the OOD frame (#358). +- [BREAKING] Removed GKR-related code (#359). + ## 0.11.0 (2024-11-24) - [BREAKING] Made the prover generic over the `ConstraintCommitment` type (#343). diff --git a/air/src/proof/ood_frame.rs b/air/src/proof/ood_frame.rs index 5afa0b34c..21e5fab61 100644 --- a/air/src/proof/ood_frame.rs +++ b/air/src/proof/ood_frame.rs @@ -246,7 +246,7 @@ impl TraceOodFrame { self.current_row.len() > self.main_trace_width } - /// Returns the main/aux frame and Lagrange kernel frame as element vectors as described in + /// Returns the main/aux frames as a vector of elements described in /// [`OodFrame::set_trace_states`]. fn to_trace_states(&self) -> Vec { let mut main_and_aux_frame_states = Vec::new();