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.

16 lines
314 B

  1. include "included.circom";
  2. include "included.circom"; // Include twice is fine. The second one is not included
  3. template Main() {
  4. signal input in;
  5. signal output out;
  6. component t1 = T1();
  7. var a = F1(3);
  8. in ==> t1.in;
  9. t1.out + a ==> out; /// out <-- in**2/3+3
  10. }
  11. component main = Main();