Update to latest Rust and fix Clippy warnings (#37)

* Update to latest Rust and fix Clippy warnings

* cleanup
This commit is contained in:
Srinath Setty
2021-10-14 16:11:19 -07:00
committed by GitHub
parent f465aed924
commit 19d1d63703
19 changed files with 227 additions and 249 deletions

View File

@@ -93,7 +93,7 @@ fn produce_r1cs() -> (
// check if the instance we created is satisfiable
let res = inst.is_sat(&assignment_vars, &assignment_inputs);
assert_eq!(res.unwrap(), true, "should be satisfied");
assert!(res.unwrap(), "should be satisfied");
(
num_cons,