eu.interedition.collatex.CollationAlgorithmFactory Maven / Gradle / Ivy
/*
* Copyright (c) 2015 The Interedition Development Group.
*
* This file is part of CollateX.
*
* CollateX is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* CollateX is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with CollateX. If not, see .
*/
package eu.interedition.collatex;
import eu.interedition.collatex.dekker.DekkerAlgorithm;
import eu.interedition.collatex.dekker.matrix.MatchTableLinker;
import eu.interedition.collatex.medite.MediteAlgorithm;
import eu.interedition.collatex.needlemanwunsch.NeedlemanWunschAlgorithm;
import eu.interedition.collatex.util.GreedyStringTilingAlgorithm;
import eu.interedition.collatex.util.VertexMatch;
import java.util.Comparator;
import java.util.SortedSet;
import java.util.function.Function;
/**
* @author Gregor Middell
* @author Ronald Haentjens Dekker
*/
public class CollationAlgorithmFactory {
public static CollationAlgorithm dekker(Comparator comparator) {
return dekkerMatchMatrix(comparator, 3);
}
public static CollationAlgorithm dekkerMatchMatrix(Comparator comparator, int outlierTranspositionsSizeLimit) {
return new DekkerAlgorithm(comparator, new MatchTableLinker());
}
public static CollationAlgorithm needlemanWunsch(Comparator comparator) {
return new NeedlemanWunschAlgorithm(comparator);
}
public static CollationAlgorithm greedyStringTiling(Comparator comparator, int minimumTileLength) {
return new GreedyStringTilingAlgorithm(comparator, minimumTileLength);
}
public static CollationAlgorithm medite(Comparator comparator, Function, Integer> matchEvaluator) {
return new MediteAlgorithm(comparator, matchEvaluator);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy