Browse Source

Apply suggestions from code review

Co-authored-by: Pratyush Mishra <pratyushmishra@berkeley.edu>
master
Nirvan Tyagi 4 years ago
committed by Pratyush Mishra
parent
commit
957ac48da4
2 changed files with 24 additions and 22 deletions
  1. +14
    -12
      src/bits/uint.rs
  2. +10
    -10
      src/bits/uint8.rs

+ 14
- 12
src/bits/uint.rs

@ -330,23 +330,25 @@ macro_rules! make_uint {
} }
impl<ConstraintF: Field> CondSelectGadget<ConstraintF> for $name<ConstraintF> { impl<ConstraintF: Field> CondSelectGadget<ConstraintF> for $name<ConstraintF> {
#[tracing::instrument(target = "r1cs")]
#[tracing::instrument(target = "r1cs", skip(cond, true_value, false_value))]
fn conditionally_select( fn conditionally_select(
cond: &Boolean<ConstraintF>, cond: &Boolean<ConstraintF>,
true_value: &Self, true_value: &Self,
false_value: &Self, false_value: &Self,
) -> Result<Self, SynthesisError> { ) -> Result<Self, SynthesisError> {
let selected_bits = true_value.bits.iter().zip(&false_value.bits)
.map(|(true_bit, false_bit)| {
cond.select(true_bit, false_bit)
}).collect::<Result<Vec<Boolean<ConstraintF>>, SynthesisError>>()?;
let selected_value = match (cond.value(), true_value.value(), false_value.value()) {
(Ok(true), Err(_), _) => None,
(Ok(true), Ok(v), _) => Some(v),
(Ok(false), _, Err(_)) => None,
(Ok(false), _, Ok(v)) => Some(v),
(Err(_), _, _) => None,
};
let selected_bits = true_value
.bits
.iter()
.zip(&false_value.bits)
.map(|(t, f)| cond.select(t, f))
.collect::<Result<Vec<_>, SynthesisError>>()?;
let selected_value = cond.value().ok().and_then(|cond| {
if cond {
true_value.value().ok()
} else {
false_value.value().ok()
}
});
Ok(Self { Ok(Self {
bits: selected_bits, bits: selected_bits,
value: selected_value, value: selected_value,

+ 10
- 10
src/bits/uint8.rs

@ -285,7 +285,7 @@ impl EqGadget for UInt8 {
} }
impl<ConstraintF: Field> CondSelectGadget<ConstraintF> for UInt8<ConstraintF> { impl<ConstraintF: Field> CondSelectGadget<ConstraintF> for UInt8<ConstraintF> {
#[tracing::instrument(target = "r1cs")]
#[tracing::instrument(target = "r1cs", skip(cond, true_value, false_value))]
fn conditionally_select( fn conditionally_select(
cond: &Boolean<ConstraintF>, cond: &Boolean<ConstraintF>,
true_value: &Self, true_value: &Self,
@ -295,15 +295,15 @@ impl CondSelectGadget for UInt8 {
.bits .bits
.iter() .iter()
.zip(&false_value.bits) .zip(&false_value.bits)
.map(|(true_bit, false_bit)| cond.select(true_bit, false_bit))
.collect::<Result<Vec<Boolean<ConstraintF>>, SynthesisError>>()?;
let selected_value = match (cond.value(), true_value.value(), false_value.value()) {
(Ok(true), Err(_), _) => None,
(Ok(true), Ok(v), _) => Some(v),
(Ok(false), _, Err(_)) => None,
(Ok(false), _, Ok(v)) => Some(v),
(Err(_), _, _) => None,
};
.map(|(t, f)| cond.select(t, f))
.collect::<Result<Vec<_>, SynthesisError>>()?;
let selected_value = cond.value().ok().and_then(|cond| {
if cond {
true_value.value().ok()
} else {
false_value.value().ok()
}
});
Ok(Self { Ok(Self {
bits: selected_bits, bits: selected_bits,
value: selected_value, value: selected_value,

Loading…
Cancel
Save