We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In this circom file , NOT gate is setting to be :
template NOT() { signal input in; signal output out;
out <== 1 + in - 2*in;
}
Why not just directly setting that as : out <== 1 - in ?
The text was updated successfully, but these errors were encountered:
Merge pull request iden3#73 from iden3/plonk-custom-gates
c6f1efd
Merge pull request iden3#72 from iden3/new_primes_added
No branches or pull requests
In this circom file , NOT gate is setting to be :
template NOT() {
signal input in;
signal output out;
}
Why not just directly setting that as : out <== 1 - in ?
The text was updated successfully, but these errors were encountered: