MVN

de.cit-ec.tcs.alignment : parallel

Maven & Gradle

Oct 26, 2018

TCS Alignment Toolbox Parallel Computing · This module provides a very basic support for the parallel computing of tasks (Engine class) and entries of a matrix (MatrixEngine). This is basically just a wrapper around the java standard functionality for parallel computing (mainly the Standard Thread Pool and the Future interface). Additional functionality is provided by the ProgressReporter interface, which can be used as a hook to provide information on the current state of the parallel computing task to other modules or the user.

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

Latest Version

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

  • Latest Stable: 3.1.1

All Versions

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

Version Vulnerabilities Updated
3.1.x
parallel-3.1.1
parallel-3.1.0
3.0.x
parallel-3.0.1
parallel-3.0.0
2.1.x
parallel-2.1.2
2.0.x
parallel-2.0.0

How to add a dependency to Maven

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

<dependency>
    <groupId>de.cit-ec.tcs.alignment</groupId>
    <artifactId>parallel</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 : parallel gradle dependency to your build.gradle file:

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

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

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

How to add a dependency to SBT Scala

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

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

Advertisement