Skip to content

Commit

Permalink
fix: Allow to compare Assembly structs
Browse files Browse the repository at this point in the history
This was missing in #123 so this PR fixes it.
  • Loading branch information
CPerezz committed Jan 17, 2023
1 parent 54e4c57 commit 2fd9425
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion halo2_proofs/src/plonk/permutation/keygen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use crate::{
};

/// Struct that accumulates all the necessary data in order to construct the permutation argument.
#[derive(Debug)]
#[derive(Debug, PartialEq, Eq)]
pub struct Assembly {
/// Columns that participate on the copy permutation argument.
pub columns: Vec<Column<Any>>,
Expand Down

0 comments on commit 2fd9425

Please sign in to comment.