From fa3c8cad252594a54ea9f83cac63ee425a9fef08 Mon Sep 17 00:00:00 2001 From: Balazs Komuves Date: Tue, 21 Jan 2025 21:27:11 +0100 Subject: [PATCH] improve some explanatory comments --- src/Types.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Types.hs b/src/Types.hs index 3a80896..acc8789 100644 --- a/src/Types.hs +++ b/src/Types.hs @@ -249,8 +249,8 @@ data OpeningSet = MkOpeningSet , opening_plonk_zs_next :: [FExt] -- ^ evaluations of the first columns shifted by \"one row\" , opening_partial_products :: [FExt] -- ^ remaining columns of the permutation arguments , opening_quotient_polys :: [FExt] -- ^ the quotient polynomials (@num_challenges * max_degree@) - , opening_lookup_zs :: [FExt] -- ^ first columns of the lookup arguments - , opening_lookup_zs_next :: [FExt] -- ^ rest of the lookup arguments + , opening_lookup_zs :: [FExt] -- ^ columns of the lookup arguments + , opening_lookup_zs_next :: [FExt] -- ^ evaluation of the lookup columns evaluated shifted by \"one row\" } deriving (Eq,Show,Generic)