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.

18 lines
251 B

  1. include "constants.jaz"
  2. template A() {
  3. signal input in;
  4. component h0;
  5. h0 = K(8);
  6. var lc = 0;
  7. var e = 1;
  8. for (var i=0; i<32; i++) {
  9. lc = lc + e*h0.out[i];
  10. e *= 2;
  11. }
  12. lc === in;
  13. }
  14. component main = A();