You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
226 B

  1. include "compconstant.circom";
  2. template AliasCheck() {
  3. signal input in[254];
  4. component compConstant = CompConstant(-1);
  5. for (var i=0; i<254; i++) in[i] ==> compConstant.in[i];
  6. compConstant.out === 0;
  7. }