Examples of UnifyAligner


Examples of net.sourceforge.align.filter.aligner.UnifyAligner

   * @see UnifyAligner
   */
  private List<Alignment> unifyAlignments(List<Alignment> alignmentList,
      List<Alignment> referenceAlignmentList) {
   
    Filter filter = new UnifyAligner(referenceAlignmentList);
   
    return filter.apply(alignmentList);
   
  }
View Full Code Here

Examples of net.sourceforge.align.filter.aligner.UnifyAligner

      if (unificationCorpus == null) {
        throw new MissingParameterException("unification-corpus");
      }
      List<Alignment> unificationAlignmentList =
        loadAlignmentList(unificationCorpus);
      filter = new UnifyAligner(unificationAlignmentList);
    } else {
      alignmentList = parser.parse();
      AlignAlgorithm algorithm = createAlgorithm(commandLine, alignmentList);
      filter = new Aligner(algorithm);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.