Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
removing unnecessary Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
rutefig committed Jul 31, 2024
1 parent 77db782 commit b215605
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/poly/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ impl<F: Debug, V: Debug, M> Debug for Expr<F, V, M> {

pub type VarAssignments<F, V> = HashMap<V, F>;

impl<F: Field + Hash, V: Eq + PartialEq + Hash + Debug, M: Hash> Expr<F, V, M> {
impl<F: Field + Hash, V: Eq + PartialEq + Hash, M: Hash> Expr<F, V, M> {
pub fn eval(&self, assignments: &VarAssignments<F, V>) -> Option<F> {
match self {
Expr::Const(v, _) => Some(*v),
Expand Down

0 comments on commit b215605

Please sign in to comment.