Browse Source

address clippy

main
Srinath Setty 3 years ago
parent
commit
7020d7a714
2 changed files with 6 additions and 5 deletions
  1. +1
    -0
      src/lib.rs
  2. +5
    -5
      src/r1cs.rs

+ 1
- 0
src/lib.rs

@ -1,5 +1,6 @@
//! This library implements core components of Nova.
#![allow(non_snake_case)]
#![allow(clippy::type_complexity)]
#![feature(test)]
#![deny(missing_docs)]

+ 5
- 5
src/r1cs.rs

@ -122,9 +122,9 @@ impl R1CSShape {
})
};
let Az = sparse_matrix_vec_product(&self.A, self.num_cons, &z);
let Bz = sparse_matrix_vec_product(&self.B, self.num_cons, &z);
let Cz = sparse_matrix_vec_product(&self.C, self.num_cons, &z);
let Az = sparse_matrix_vec_product(&self.A, self.num_cons, z);
let Bz = sparse_matrix_vec_product(&self.B, self.num_cons, z);
let Cz = sparse_matrix_vec_product(&self.C, self.num_cons, z);
Ok((Az, Bz, Cz))
}
@ -286,8 +286,8 @@ impl R1CSInstance {
Err(NovaError::InvalidInputLength)
} else {
Ok(R1CSInstance {
comm_W: comm_W.clone(),
comm_E: comm_E.clone(),
comm_W: *comm_W,
comm_E: *comm_E,
X: X.to_owned(),
u: *u,
})

Loading…
Cancel
Save