Skip to content

Commit

Permalink
Merge pull request #1410 from jplag/feature/default-n
Browse files Browse the repository at this point in the history
Increase default number of exported comparisons to 500.
  • Loading branch information
tsaglam authored Dec 1, 2023
2 parents 96ad012 + 77ad470 commit 07001bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/de/jplag/options/JPlagOptions.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public record JPlagOptions(Language language, Integer minimumTokenMatch, Set<Fil
boolean debugParser, MergingOptions mergingOptions) {

public static final double DEFAULT_SIMILARITY_THRESHOLD = 0;
public static final int DEFAULT_SHOWN_COMPARISONS = 100;
public static final int DEFAULT_SHOWN_COMPARISONS = 500;
public static final int SHOW_ALL_COMPARISONS = 0;
public static final SimilarityMetric DEFAULT_SIMILARITY_METRIC = SimilarityMetric.AVG;
public static final Charset CHARSET = StandardCharsets.UTF_8;
Expand Down

0 comments on commit 07001bf

Please sign in to comment.