Skip to content

Commit

Permalink
fix the build
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-hoffman committed Sep 6, 2024
1 parent dfd41ac commit 2616a5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion circuit_passes/src/bucket_interpreter/value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ pub fn complement(v: &Value, field: &BigInt) -> Result<Value, BadInterp> {
match v {
Unknown => Ok(Unknown),
KnownU32(n) => Ok(KnownU32(!(*n))),
KnownBigInt(n) => Ok(KnownBigInt(modular_arithmetic::complement_256(n, field))),
KnownBigInt(n) => Ok(KnownBigInt(modular_arithmetic::complement_254(n, field))),
}
}

Expand Down

0 comments on commit 2616a5b

Please sign in to comment.