EndGapFree alignments

This commit is contained in:
Eric Coissac
2024-09-24 15:52:12 +02:00
parent 05bf2bfd6c
commit 2b4a633c30
4 changed files with 135 additions and 3 deletions

View File

@@ -12,7 +12,7 @@ func _Backtracking(pathMatrix []int, lseqA, lseqB int, path *[]int) []int {
cp := cap(*path)
(*path) = slices.Grow((*path), needed)
if cp < cap(*path) {
log.Infof("Resized path from %d to %d\n", cp, cap(*path))
log.Debugf("Resized path from %d to %d\n", cp, cap(*path))
}
p := cap(*path)
*path = (*path)[:p]