From 1ac975ab99186f0302a1d82944a8a84ca328648a Mon Sep 17 00:00:00 2001 From: AndreaGuarracino Date: Mon, 7 Mar 2022 20:02:53 +0100 Subject: [PATCH] make the `steps_between_cutoffs` parameter optional and equal to 1 by default --- bindings/cpp/WFAligner.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bindings/cpp/WFAligner.hpp b/bindings/cpp/WFAligner.hpp index c2307581..6fe861d3 100644 --- a/bindings/cpp/WFAligner.hpp +++ b/bindings/cpp/WFAligner.hpp @@ -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*),