Skip to content

Commit

Permalink
Fix category counts
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaming32 committed May 5, 2021
1 parent d831193 commit 1b77dbf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/threads/RunExchangeSorts.java
Expand Up @@ -86,7 +86,7 @@ final public class RunExchangeSorts extends MultipleSortThread {

public RunExchangeSorts(ArrayVisualizer arrayVisualizer) {
super(arrayVisualizer);
this.sortCount = 38;
this.sortCount = 49;
this.categoryCount = this.sortCount;

UnoptimizedBubbleSort = new UnoptimizedBubbleSort(this.arrayVisualizer);
Expand Down
2 changes: 1 addition & 1 deletion src/threads/RunHybridSorts.java
Expand Up @@ -89,7 +89,7 @@ final public class RunHybridSorts extends MultipleSortThread {

public RunHybridSorts(ArrayVisualizer arrayVisualizer) {
super(arrayVisualizer);
this.sortCount = 47;
this.sortCount = 51;
this.categoryCount = this.sortCount;

HybridCombSort = new HybridCombSort(this.arrayVisualizer);
Expand Down
2 changes: 1 addition & 1 deletion src/threads/RunImpracticalSorts.java
Expand Up @@ -98,7 +98,7 @@ final public class RunImpracticalSorts extends MultipleSortThread {

public RunImpracticalSorts(ArrayVisualizer arrayVisualizer) {
super(arrayVisualizer);
this.sortCount = 28;
this.sortCount = 32;
this.categoryCount = this.sortCount;

BadSort = new BadSort(this.arrayVisualizer);
Expand Down
2 changes: 1 addition & 1 deletion src/threads/RunInsertionSorts.java
Expand Up @@ -60,7 +60,7 @@ final public class RunInsertionSorts extends MultipleSortThread {

public RunInsertionSorts(ArrayVisualizer arrayVisualizer) {
super(arrayVisualizer);
this.sortCount = 21;
this.sortCount = 24;
this.categoryCount = this.sortCount;

InsertionSort = new InsertionSort(this.arrayVisualizer);
Expand Down

0 comments on commit 1b77dbf

Please sign in to comment.