Merge pull request #279 from zcash/derive-eq

plonk::circuit : Derive Eq for Permutation
This commit is contained in:
str4d 2021-06-01 17:20:05 +01:00 committed by GitHub
commit 256055c656
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ impl Selector {
}
/// A permutation.
#[derive(Clone, Debug)]
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct Permutation {
/// The index of this permutation.
index: usize,