Skip to content

Commit

Permalink
Change default value for minimum required matches.
Browse files Browse the repository at this point in the history
  • Loading branch information
tsaglam committed Feb 19, 2025
1 parent 22efb29 commit f074b37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/de/jplag/merging/MergingOptions.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public record MergingOptions(@JsonProperty("enabled") boolean enabled, @JsonProp
public static final boolean DEFAULT_ENABLED = false;
public static final int DEFAULT_NEIGHBOR_LENGTH = 2;
public static final int DEFAULT_GAP_SIZE = 6;
public static final int DEFAULT_REQUIRED_MERGES = 3;
public static final int DEFAULT_REQUIRED_MERGES = 6;

/**
* Creates merging options with default parameters.
Expand Down

0 comments on commit f074b37

Please sign in to comment.