You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Everything used by Circomkit can be optionally overridden by providing the selected fields in its constructor. Circomkit CLI does this automatically by checking out `circomkit.json` and overriding the defaults with that. You can print the active configuration via the following command:
98
+
Everything used by Circomkit can be optionally overridden by providing the selected fields in its constructor. Circomkit CLI does this automatically by checking out [`circomkit.json`](src/configs/index.ts#L56) and overriding the defaults with that. You can print the active configuration via the following command:
* Defaults to `2` as per the Circom defaults, see [`circom/src/input_user.rs`](https://github.com/iden3/circom/blob/master/circom/src/input_user.rs#L249).
34
35
* - `0`: No simplification is applied.
35
36
* - `1`: Only applies `var` to `var` and `var` to `constant` simplification.
36
-
* - `2`: Full constraint simplificiation via Gaussian eliminations.
37
+
* - `2`: Full constraint simplificiation via Gaussian eliminations. (Default)
37
38
* - `>2`: Any number higher than 2 will use `--O2round` with the number as simplification rounds.
0 commit comments