removed commented out code
This commit is contained in:
parent
8f5e4d9985
commit
22b862eeee
1 changed files with 0 additions and 22 deletions
|
@ -72,16 +72,6 @@ fn ark_combination<T: Field + ArkFieldExtensions>(
|
|||
.fold(LinearCombination::zero(), |acc, e| acc + e)
|
||||
}
|
||||
|
||||
// impl<T: Field + ArkFieldExtensions, I: IntoIterator<Item = Statement<T>>> Computation<T, I> {
|
||||
// pub fn public_inputs_values(&self) -> Vec<<T::ArkEngine as PairingEngine>::Fr> {
|
||||
// self.program
|
||||
// .public_inputs(self.witness.as_ref().unwrap())
|
||||
// .iter()
|
||||
// .map(|v| v.clone().into_ark())
|
||||
// .collect()
|
||||
// }
|
||||
// }
|
||||
|
||||
impl<T: Field + ArkFieldExtensions, I: IntoIterator<Item = Statement<T>>>
|
||||
ConstraintSynthesizer<<<T as ArkFieldExtensions>::ArkEngine as PairingEngine>::Fr>
|
||||
for Computation<T, I>
|
||||
|
@ -163,18 +153,6 @@ impl<T: Field + ArkFieldExtensions, I: IntoIterator<Item = Statement<T>>> Comput
|
|||
}
|
||||
}
|
||||
|
||||
// impl<T: Field + ArkFieldExtensions, I: IntoIterator<Item = Statement<T>>>
|
||||
// ConstraintSynthesizer<<<T as ArkFieldExtensions>::ArkEngine as PairingEngine>::Fr>
|
||||
// for Computation<T, I>
|
||||
// {
|
||||
// fn generate_constraints(
|
||||
// self,
|
||||
// cs: ConstraintSystemRef<<<T as ArkFieldExtensions>::ArkEngine as PairingEngine>::Fr>,
|
||||
// ) -> Result<(), SynthesisError> {
|
||||
// self.program.generate_constraints(cs, self.witness)
|
||||
// }
|
||||
// }
|
||||
|
||||
mod parse {
|
||||
use super::*;
|
||||
use ark_ff::ToBytes;
|
||||
|
|
Loading…
Reference in a new issue