MVN

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.

<dependency>
    <groupId>de.cit-ec.tcs.alignment</groupId>
    <artifactId>sets</artifactId>
    <version>3.1.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of de.cit-ec.tcs.alignment : sets to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 3.1.1

All Versions

Choose a version of de.cit-ec.tcs.alignment : sets to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
3.1.x
sets-3.1.1
sets-3.1.0

How to add a dependency to Maven

Add the following de.cit-ec.tcs.alignment : sets maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>de.cit-ec.tcs.alignment</groupId>
    <artifactId>sets</artifactId>
    <version>3.1.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following de.cit-ec.tcs.alignment : sets gradle dependency to your build.gradle file:

implementation 'de.cit-ec.tcs.alignment:sets:3.1.1'

Gradle Kotlin DSL: Add the following de.cit-ec.tcs.alignment : sets gradle kotlin dependency to your build.gradle.kts file:

implementation("de.cit-ec.tcs.alignment:sets:3.1.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following de.cit-ec.tcs.alignment : sets sbt scala dependency to your build.sbt file:

libraryDependencies += "de.cit-ec.tcs.alignment" % "sets" % "3.1.1"

Advertisement