Skip to content

Commit

Permalink
make the steps_between_cutoffs parameter optional and equal to 1 by…
Browse files Browse the repository at this point in the history
… default
  • Loading branch information
AndreaGuarracino committed Mar 7, 2022
1 parent 0fa83da commit 1ac975a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bindings/cpp/WFAligner.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,17 +110,17 @@ class WFAligner {
void setHeuristicBandedAdaptive(
const int band_min_k,
const int band_max_k,
const int steps_between_cutoffs);
const int steps_between_cutoffs = 1);
void setHeuristicWFadaptive(
const int min_wavefront_length,
const int max_distance_threshold,
const int steps_between_cutoffs);
const int steps_between_cutoffs = 1);
void setHeuristicXDrop(
const int xdrop,
const int steps_between_cutoffs);
const int steps_between_cutoffs = 1);
void setHeuristicZDrop(
const int zdrop,
const int steps_between_cutoffs);
const int steps_between_cutoffs = 1);
// Custom extend-match function (lambda)
void setMatchFunct(
int (*matchFunct)(int,int,void*),
Expand Down

0 comments on commit 1ac975a

Please sign in to comment.