You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The unconstrained-less-than analysis pass should check if the input evaluates to a constant value before emitting a warning.
In particular, warnings like the following do not make any sense.
warning: Inputs to `LessThan` need to be constrained to ensure that they are non-negative
┌─ /.../file.circom:72:28
│
72 │ lt.in[1] <== 50 + 5;
│ ^^^^^^ `50 + 5` needs to be constrained to ensure that it is <= p/2.
│
= For more details, see https://github.com/trailofbits/circomspect/blob/main/doc/analysis_passes.md#unconstrained-less-than.
The text was updated successfully, but these errors were encountered:
The
unconstrained-less-than
analysis pass should check if the input evaluates to a constant value before emitting a warning.In particular, warnings like the following do not make any sense.
The text was updated successfully, but these errors were encountered: