Skip to content

Commit

Permalink
removing public modifier in src/provider/ipa_pc.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
huitseeker committed Jan 5, 2024
1 parent 16affeb commit 524c438
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/provider/ipa_pc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ fn inner_product<T: Field + Send + Sync>(a: &[T], b: &[T]) -> T {

/// An inner product instance consists of a commitment to a vector `a` and another vector `b`
/// and the claim that c = <a, b>.
pub struct InnerProductInstance<E: Engine> {
struct InnerProductInstance<E: Engine> {
comm_a_vec: Commitment<E>,
b_vec: Vec<E::Scalar>,
c: E::Scalar,
Expand Down

0 comments on commit 524c438

Please sign in to comment.