mirror of
https://github.com/arnaucube/circom.git
synced 2026-02-06 18:56:40 +01:00
Merge pull request #18 from canadaduane/patch-1
Fix name & grammatical issues
This commit is contained in:
10
README.md
10
README.md
@@ -1,6 +1,6 @@
|
|||||||
# Circom
|
# Circom
|
||||||
|
|
||||||
Circon is a language designed to write arithmetic circuits that can be used in zero knowledge proofs.
|
Circom is a language designed to write arithmetic circuits that can be used in zero knowledge proofs.
|
||||||
|
|
||||||
In particular, it is designed to work in [zksnarks JavaScript library](https://github.com/iden3/zksnark).
|
In particular, it is designed to work in [zksnarks JavaScript library](https://github.com/iden3/zksnark).
|
||||||
|
|
||||||
@@ -25,7 +25,7 @@ template NAND() {
|
|||||||
component main = NAND();
|
component main = NAND();
|
||||||
```
|
```
|
||||||
|
|
||||||
The language uses mainly JavaScript/C syntax together with 5 extra operators to define the constraints:
|
The language uses mainly JavaScript/C syntax together with 5 extra operators to define the following constraints:
|
||||||
|
|
||||||
`<==` , `==>` : These two operators are used to connect signals and at the same time imply a constraint.
|
`<==` , `==>` : These two operators are used to connect signals and at the same time imply a constraint.
|
||||||
|
|
||||||
@@ -39,7 +39,7 @@ In the above example, both inputs are forced to be binary by adding the constrai
|
|||||||
|
|
||||||
### Compilation the circuit
|
### Compilation the circuit
|
||||||
|
|
||||||
First of all, the compiler must be installed typing:
|
First of all, the compiler must be installed by typing:
|
||||||
|
|
||||||
```
|
```
|
||||||
npm install -g circom
|
npm install -g circom
|
||||||
@@ -91,7 +91,7 @@ in === out[0]*2**0 + out[1]*2**1 + out[2]*2**2 + ... + out[n-1]*2**(n-1)
|
|||||||
```
|
```
|
||||||
|
|
||||||
We do this by using a variable `lc1` and adding each signal multiplied by its coefficient.
|
We do this by using a variable `lc1` and adding each signal multiplied by its coefficient.
|
||||||
This variable does not hold a value in compilation time, but it holds a linear combination and it is used in the last constraint:
|
This variable does not hold a value at compilation time, but it holds a linear combination and it is used in the last constraint:
|
||||||
|
|
||||||
```
|
```
|
||||||
lc1 === in;
|
lc1 === in;
|
||||||
@@ -256,7 +256,7 @@ In this example we have shown how to design a top-down circuit with many subcirc
|
|||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
Circon is part of the iden3 project copyright 2018 0KIMS association and published with GPL-3 license. Please check the COPYING file for more details.
|
Circom is part of the iden3 project copyright 2018 0KIMS association and published with GPL-3 license. Please check the COPYING file for more details.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user