Skip to content

Commit

Permalink
Update poly/src/polynomial/univariate/mod.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
tcoratger authored Nov 26, 2024
1 parent f95e47a commit 1d9cbcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion poly/src/polynomial/univariate/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pub use sparse::SparsePolynomial;
use rayon::prelude::*;

/// Represents either a sparse polynomial or a dense one.
#[derive(Debug, Clone)]
#[derive(Clone)]
pub enum DenseOrSparsePolynomial<'a, F: Field> {
/// Represents the case where `self` is a sparse polynomial
SPolynomial(Cow<'a, SparsePolynomial<F>>),
Expand Down

0 comments on commit 1d9cbcf

Please sign in to comment.