MVN

com.debacharya : nsgaii

Maven & Gradle

Mar 23, 2021
39 stars

NSGA-II · A NSGA-II implementation using Java. This implementation of NSGA-II algorithm is in pure reference to the original published paper. This is not an effort to convert the originally implemented C code in Java. The original C code by the authors has not be referred to while writing this implementation. This is a fully customizable implementation of the NSGA-II algorithm, made as generic as possible. This documentation assumes you have basic understanding of the NSGA-II algorithm. Apart from the core concepts of the algorithm, everything else in this package can be implemented as per the user's choice and plugged into the algorithm dynamically. Since NSGA-II is more like a set of protocols to follow as an algorithm rather than a concrete implementation of every aspect, this package has been re-written from scratch keeping complete customizability in mind. Apart from the core concepts of the algorithm, everything is considered to be a plugin external to the algorithm that can be implemented by the user and dynamically plugged into the algorithm during runtime as needed. This opens up the possibility of the package to be used simply as a PoC or be converted into something much more complex according to the users needs.

<dependency>
    <groupId>com.debacharya</groupId>
    <artifactId>nsgaii</artifactId>
    <version>3.2.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.debacharya : nsgaii to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 3.2.0

All Versions

Choose a version of com.debacharya : nsgaii to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
3.2.x
nsgaii-3.2.0
3.1.x
nsgaii-3.1.3
nsgaii-3.1.1
nsgaii-3.1.0
3.0.x
nsgaii-3.0.11
nsgaii-3.0.10
nsgaii-3.0.9
nsgaii-3.0.8
nsgaii-3.0.7
nsgaii-3.0.6
nsgaii-3.0.5
nsgaii-3.0.4
nsgaii-3.0.3
nsgaii-3.0.2
nsgaii-3.0.1

How to add a dependency to Maven

Add the following com.debacharya : nsgaii maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.debacharya</groupId>
    <artifactId>nsgaii</artifactId>
    <version>3.2.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.debacharya : nsgaii gradle dependency to your build.gradle file:

implementation 'com.debacharya:nsgaii:3.2.0'

Gradle Kotlin DSL: Add the following com.debacharya : nsgaii gradle kotlin dependency to your build.gradle.kts file:

implementation("com.debacharya:nsgaii:3.2.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.debacharya : nsgaii sbt scala dependency to your build.sbt file:

libraryDependencies += "com.debacharya" % "nsgaii" % "3.2.0"