DOC

de.cit-ec.tcs.alignment : sets

Maven & Gradle

Oct 26, 2018

TCS Alignment Toolbox Sets · This module provides algorithms to compare sets, that is, order-invariant lists. These algorithms are implementations of the AlignmentAlgorithm interface defined in the algorithms module. In particular, this module contains the StrictSetAlignmentScoreAlgorithm for computing the cost of the optimal unordered alignment of two sets, the StrictSetAlignmentFullAlgorithm which provides the Alignment itself as well, and the GreedySetAlignmentScoreAlgorithm as well as the GreedySetAlignmentFullAlgorithm for computing a potentially sub-optimal but faster alignment of two sets. The optimal alignments rely on the HungarianAlgorithm for solving the assignment problem in bipartite graphs. Here, we rely on the implementation provided by Kevin L. Stern which is provided within this distribution.

Table Of Contents

Latest Version

Download de.cit-ec.tcs.alignment : sets Javadoc & API Documentation - Latest Versions:

All Versions

Download de.cit-ec.tcs.alignment : sets Javadoc & API Documentation - All Versions:

Version Size Javadoc Updated
3.1.x

How to open Javadoc JAR file in web browser

  1. Rename the file sets-3.1.1-javadoc.jar to sets-3.1.1-javadoc.zip
  2. Use your favourite unzip tool (WinRAR / WinZIP) to extract it, now you have a folder sets-3.1.1-javadoc
  3. Double click index.html will open the index page on your default web browser.

How to generate Javadoc from a source JAR?

Running the command javadoc:

javadoc --ignore-source-errors -encoding UTF-8 -sourcepath "sets-3.1.1-sources.jar" -d "sets-3.1.1-javadoc" -subpackages 

Advertisement