1#![feature(test)]
2
3extern crate test;
4
5pub use algebra::*;
6pub use mcircuit::{evaluate_composite_program, largest_wires};
7pub use mcircuit::{CombineOperation, Operation};
8
9pub mod algebra;
10pub mod crypto;
11pub mod generator;
12pub mod interpreter;
13pub mod proof;
14pub mod transcript;
15
16pub const PLAYERS: usize = 8;
18
19pub const PACKED: usize = 8;
21
22pub const BATCH_SIZE: usize = 128;
26
27const ONLINE_REPS: usize = 40;
30
31const TOTAL_REPS: usize = 256;
34
35const PREPROCESSING_REPS: usize = TOTAL_REPS - ONLINE_REPS;
37
38const PACKED_REPS: usize = TOTAL_REPS / PACKED;