-
Hi, I build a pretty simple cirtuit, but it won't work. I get a
and my circuit has only this line: When I setup, it fails with the error message above. But if I add a multiplication, it works: So if there is Mul before the Assert, it works. Is it a must to have a computation before? Or am I doing something wrong or missunderstood it? Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi, indeed this popped up before, and this should throw a clean error message ( #112 ). A circuit that has no computational constraints make little sense (do you have something we missed in mind? ) --> it means the proof is stating something like Note that some |
Beta Was this translation helpful? Give feedback.
Hi, indeed this popped up before, and this should throw a clean error message ( #112 ).
A circuit that has no computational constraints make little sense (do you have something we missed in mind? ) --> it means the proof is stating something like
x == y
and to verify the proof, one must supply...y
.Note that some
assertions
(likeAssertIsLessOrEqual
) will add computational constraints.AssertIsEqual
does not.