This commit is contained in:
Daniel Langbein 2024-12-16 21:19:35 +00:00
parent 43dfcd987e
commit cb9ff240ea
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002
2 changed files with 5 additions and 2 deletions

View File

@ -1,4 +1,7 @@
package de.uni_marburg.powersort.benchmark;
package de.uni_marburg.powersort;
import de.uni_marburg.powersort.benchmark.DummyComparable1;
import de.uni_marburg.powersort.benchmark.NaturalOrder;
import java.util.Arrays;

View File

@ -3,7 +3,7 @@ package de.uni_marburg.powersort.benchmark;
/**
* A class for tiny, comparable objects.
*/
record DummyComparable1(int id) implements Comparable<DummyComparable1> {
public record DummyComparable1(int id) implements Comparable<DummyComparable1> {
@Override
public int compareTo(DummyComparable1 other) {
return id - other.id;