Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
stuarttimwhite committed Dec 10, 2024
1 parent 86dc1f2 commit f78eeef
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
use super::{
dynamic_dory_structure::{full_width_of_row, row_and_column_from_index, row_start_index},
pairings, DoryScalar, DynamicDoryCommitment, G1Projective, ProverSetup, GT,
use super::{pairings, DoryScalar, DynamicDoryCommitment, G1Projective, ProverSetup, GT};
use crate::{
base::{commitment::CommittableColumn, if_rayon, slice_ops::slice_cast},
proof_primitive::dynamic_dory_and_hyrax_common_utils::structure::{
full_width_of_row, row_and_column_from_index, row_start_index,
},
};
use crate::base::{commitment::CommittableColumn, if_rayon, slice_ops::slice_cast};
use alloc::vec::Vec;
use ark_ec::VariableBaseMSM;
use bytemuck::TransparentWrapper;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
use alloc::{vec, vec::Vec};
use itertools::Itertools;

/// Any functionality that is need to implement common code between Hyrax and DynamicDory.
/// Any functionality that is need to implement common code between Hyrax and Dynamic Dory.
pub trait StandardBasisConfiguration:
Clone
+ Copy
+ std::ops::Sub<Output = Self>
+ std::iter::Product
+ std::ops::MulAssign
+ std::ops::Mul<Output = Self>
+ std::ops::Add<Output = Self>
+ std::iter::Product<<Self as std::ops::Add>::Output>
+ core::ops::Sub<Output = Self>
+ core::iter::Product
+ core::ops::MulAssign
+ core::ops::Mul<Output = Self>
+ core::ops::Add<Output = Self>
+ core::iter::Product<<Self as core::ops::Add>::Output>
{
const BASIS_ZERO: Self;
const BASIS_ONE: Self;
Expand Down
4 changes: 3 additions & 1 deletion crates/proof-of-sql/src/proof_primitive/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
//! TODO: add docs
pub mod dory;
pub(super) mod dynamic_dory_and_hyrax_common_utils;
/// The Hyrax proof scheme
pub mod hyrax;
/// TODO: add docs
pub(crate) mod sumcheck;
pub(super) mod dynamic_dory_and_hyrax_common_utils;

0 comments on commit f78eeef

Please sign in to comment.