Skip to content

Commit 256693d

Browse files
committed
fix heliumsort
1 parent 52d4606 commit 256693d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sorts/HeliumSort.opal

+1-1
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,7 @@ new class HeliumSort {
728728
return None, None;
729729
}
730730

731-
a = max(oldA, m - ((m - a) / this.blockLen + 1) * this.blockLen);
731+
a = max(oldA, m - ((m - a) // this.blockLen + 1) * this.blockLen);
732732
return a, b;
733733
}
734734

0 commit comments

Comments
 (0)