From 79dc28c7e14409f5e3178f96f49afdb7b9044995 Mon Sep 17 00:00:00 2001 From: wborgeaud Date: Fri, 6 May 2022 17:36:32 +0200 Subject: [PATCH] Rename --- starky2/src/{cross_table_lookups.rs => cross_table_lookup.rs} | 0 starky2/src/lib.rs | 2 +- starky2/src/prover.rs | 2 +- starky2/src/vanishing_poly.rs | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename starky2/src/{cross_table_lookups.rs => cross_table_lookup.rs} (100%) diff --git a/starky2/src/cross_table_lookups.rs b/starky2/src/cross_table_lookup.rs similarity index 100% rename from starky2/src/cross_table_lookups.rs rename to starky2/src/cross_table_lookup.rs diff --git a/starky2/src/lib.rs b/starky2/src/lib.rs index 52d7a6c1..aa14ac73 100644 --- a/starky2/src/lib.rs +++ b/starky2/src/lib.rs @@ -5,7 +5,7 @@ pub mod config; pub mod constraint_consumer; -pub mod cross_table_lookups; +pub mod cross_table_lookup; mod get_challenges; // pub mod mock_stark; pub mod all_stark; diff --git a/starky2/src/prover.rs b/starky2/src/prover.rs index 4b2ad23c..02de8560 100644 --- a/starky2/src/prover.rs +++ b/starky2/src/prover.rs @@ -21,7 +21,7 @@ use rayon::prelude::*; use crate::all_stark::{AllStark, Table}; use crate::config::StarkConfig; use crate::constraint_consumer::ConstraintConsumer; -use crate::cross_table_lookups::{ +use crate::cross_table_lookup::{ cross_table_lookup_zs, CTLCheckVars, CrossTableLookup, LookupData, }; use crate::permutation::{ diff --git a/starky2/src/vanishing_poly.rs b/starky2/src/vanishing_poly.rs index 7d43feb3..baa9aeaa 100644 --- a/starky2/src/vanishing_poly.rs +++ b/starky2/src/vanishing_poly.rs @@ -6,7 +6,7 @@ use plonky2::plonk::config::GenericConfig; use crate::config::StarkConfig; use crate::constraint_consumer::{ConstraintConsumer, RecursiveConstraintConsumer}; -use crate::cross_table_lookups::{eval_cross_table_lookup_checks, CTLCheckVars}; +use crate::cross_table_lookup::{eval_cross_table_lookup_checks, CTLCheckVars}; use crate::permutation::{ eval_permutation_checks, eval_permutation_checks_recursively, PermutationCheckDataTarget, PermutationCheckVars,