Skip to content

Commit

Permalink
fix(bench): removed unneeded derives from benches
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLostLambda committed Oct 4, 2022
1 parent 4251055 commit e087b05
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions benches/pairhmm.rs
Expand Up @@ -22,9 +22,6 @@ fn prob_emit_x_or_y() -> LogProb {
LogProb::from(Prob(1.0) - PROB_ILLUMINA_SUBST)
}

#[derive(
Default, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug, Serialize, Deserialize,
)]
pub struct TestEmissionParams {
x: &'static [u8],
y: &'static [u8],
Expand Down Expand Up @@ -56,9 +53,6 @@ impl EmissionParameters for TestEmissionParams {
}
}

#[derive(
Default, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug, Serialize, Deserialize,
)]
pub struct SemiglobalGapParams;

impl GapParameters for SemiglobalGapParams {
Expand All @@ -79,9 +73,6 @@ impl GapParameters for SemiglobalGapParams {
}
}

#[derive(
Default, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug, Serialize, Deserialize,
)]
pub struct SemiglobalAlignment;

impl StartEndGapParameters for SemiglobalAlignment {
Expand Down

0 comments on commit e087b05

Please sign in to comment.