Skip to content

Commit

Permalink
update delay
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaming32 committed Apr 6, 2021
1 parent 7941e86 commit 2acaf33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/threads/RunQuickSorts.java
Expand Up @@ -45,7 +45,7 @@ public RunQuickSorts(ArrayVisualizer arrayVisualizer) {

@Override
protected synchronized void executeSortList(int[] array) throws Exception {
RunQuickSorts.this.runIndividualSort(CubeRootQuickSort, 0, array, 2048, 1, false);
RunQuickSorts.this.runIndividualSort(CubeRootQuickSort, 0, array, 2048, arrayManager.getShuffle() == Shuffles.RANDOM ? 1 : 6.5, false);
}

@Override
Expand Down

0 comments on commit 2acaf33

Please sign in to comment.