Skip to content

Commit

Permalink
chore: Address tiny nit
Browse files Browse the repository at this point in the history
  • Loading branch information
wwared committed Aug 29, 2024
1 parent 8fdf9e5 commit 82f09a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lurk/eval.rs
Original file line number Diff line number Diff line change
Expand Up @@ -535,14 +535,14 @@ pub fn u64_iszero<F>() -> FuncE<F> {
pub fn u64_equal<F: AbstractField>() -> FuncE<F> {
func!(
fn u64_equal(a, b): [1] {
let zero = 0;
let one = 1;
let a: [8] = load(a);
let b: [8] = load(b);
let diff = sub(a, b);
if diff {
let zero = 0;
return zero
}
let one = 1;
return one
}
)
Expand Down

0 comments on commit 82f09a7

Please sign in to comment.