Skip to content

Commit

Permalink
Activating fallback sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
mattulbrich authored Oct 23, 2023
1 parent 6a47926 commit c9b1cc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/de/wiesler/Sorter.java
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ private static void sample_sort(int[] values, int begin, int end, Storage storag
@ assignable values[begin..end - 1];
@*/
public static void fallback_sort(int[] values, int begin, int end) {
// insertion_sort(values, begin, end);
insertion_sort(values, begin, end);
}

public static void insertion_sort(int[] values, int begin, int end) {
Expand Down

0 comments on commit c9b1cc1

Please sign in to comment.