mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-05 07:13:08 +00:00
Merge pull request #480 from mir-protocol/fix_mul_sub_typo
Fix `mul_add` -> `mul_sub` typo
This commit is contained in:
commit
59d4e04bce
@ -64,7 +64,7 @@ pub(crate) fn eval_arithmetic_unit_recursively<F: RichField + Extendable<D>, con
|
||||
// Check that the operation flag values are binary.
|
||||
for col in [IS_ADD, IS_SUB, IS_MUL, IS_DIV] {
|
||||
let val = local_values[col];
|
||||
let constraint = builder.mul_add_extension(val, val, val);
|
||||
let constraint = builder.mul_sub_extension(val, val, val);
|
||||
yield_constr.constraint_wrapping(builder, constraint);
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user