mirror of
https://github.com/codex-storage/codex-storage-proofs.git
synced 2025-01-09 18:35:48 +00:00
26d8f78c58
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
18 lines
247 B
Plaintext
18 lines
247 B
Plaintext
template TestPlonk() {
|
|
signal input a;
|
|
signal private input b;
|
|
signal output c;
|
|
|
|
signal i1;
|
|
signal i2;
|
|
signal i4;
|
|
|
|
i1 <== a+b+3;
|
|
|
|
i2 <== i1*i1;
|
|
i4 <== i2*i2;
|
|
c <== i1*i4;
|
|
}
|
|
|
|
component main = TestPlonk();
|