Skip to content

Commit

Permalink
Decreased similarity threshold for FuzzyLogic
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelory committed Apr 3, 2024
1 parent 56ab34c commit fc16ba9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/florizz/core/FuzzyLogic.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
public class FuzzyLogic {

private static final Map<String, String> ITEMS = new HashMap<>();
private static final int SIMILARITY_THRESHOLD = 3;
private static final int SIMILARITY_THRESHOLD = 2;
private static final Logger logger = Logger.getLogger(FuzzyLogic.class.getName());

static {
Expand Down

0 comments on commit fc16ba9

Please sign in to comment.