Skip to content

Commit

Permalink
mark unused params with underscore
Browse files Browse the repository at this point in the history
  • Loading branch information
tedil committed Feb 23, 2022
1 parent bbe5192 commit 1b09989
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/stats/pairhmm/homopolypairhmm.rs
Expand Up @@ -191,19 +191,19 @@ pub trait BaseSpecificHopParameters {
}

impl<H: HopParameters> BaseSpecificHopParameters for H {
fn prob_hop_x_with_base(&self, base: u8) -> LogProb {
fn prob_hop_x_with_base(&self, _base: u8) -> LogProb {
self.prob_hop_x()
}

fn prob_hop_y_with_base(&self, base: u8) -> LogProb {
fn prob_hop_y_with_base(&self, _base: u8) -> LogProb {
self.prob_hop_y()
}

fn prob_hop_x_extend_with_base(&self, base: u8) -> LogProb {
fn prob_hop_x_extend_with_base(&self, _base: u8) -> LogProb {
self.prob_hop_x_extend()
}

fn prob_hop_y_extend_with_base(&self, base: u8) -> LogProb {
fn prob_hop_y_extend_with_base(&self, _base: u8) -> LogProb {
self.prob_hop_y_extend()
}
}
Expand Down

0 comments on commit 1b09989

Please sign in to comment.