We need only 126 wires now

This commit is contained in:
wborgeaud 2021-07-22 14:42:42 +02:00
parent 467485c3f0
commit 15a64017dc
3 changed files with 3 additions and 3 deletions

View File

@ -56,7 +56,7 @@ impl CircuitConfig {
pub(crate) fn large_config() -> Self {
Self {
num_wires: 134,
num_wires: 126,
num_routed_wires: 34,
security_bits: 128,
rate_bits: 3,

View File

@ -310,7 +310,7 @@ mod tests {
let gate = Gate::with_constants(constants.clone());
let config = CircuitConfig {
num_wires: 134,
num_wires: 126,
num_routed_wires: 200,
..Default::default()
};

View File

@ -363,7 +363,7 @@ mod tests {
type F = CrandallField;
const D: usize = 4;
let config = CircuitConfig {
num_wires: 134,
num_wires: 126,
num_routed_wires: 33,
security_bits: 128,
rate_bits: 3,