1
0
Fork 0
mirror of synced 2025-09-24 04:40:05 +00:00

adapt flatten tests

This commit is contained in:
schaeff 2019-05-28 14:51:50 +02:00
parent 39685271d9
commit a946299c71
3 changed files with 674 additions and 897 deletions

View file

@ -17,7 +17,7 @@ use std::collections::HashMap;
use std::fmt;
use zokrates_field::field::Field;
#[derive(Clone)]
#[derive(Clone, PartialEq)]
pub struct FlatProg<T: Field> {
/// FlatFunctions of the program
pub main: FlatFunction<T>,

File diff suppressed because it is too large Load diff

View file

@ -11,7 +11,7 @@ mod power_check;
mod propagation;
mod unroll;
use self::core_lib_injector::CoreLibInjector;
pub use self::core_lib_injector::CoreLibInjector;
use self::inline::Inliner;
use self::power_check::PowerChecker;
use self::propagation::Propagator;