| Лицензия |
Лицензия |
|---|---|
| Группа | Группаcom.debacharya |
| Идентификатор | Идентификаторnsgaii |
| Версия | Версия3.2.0 |
| Тип | Типjar |
| Описание |
Описание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.
|
| Ссылка на сайт |
Ссылка на сайт |
| Система контроля версий |
Система контроля версий |
| Имя Файла | Размер |
|---|---|
| nsgaii-3.2.0.pom | |
| nsgaii-3.2.0.jar | 62 KB |
| nsgaii-3.2.0-sources.jar | 51 KB |
| nsgaii-3.2.0-javadoc.jar | 329 KB |
| Обзор |
<!-- https://jarcasting.com/artifacts/com.debacharya/nsgaii/ -->
<dependency>
<groupId>com.debacharya</groupId>
<artifactId>nsgaii</artifactId>
<version>3.2.0</version>
</dependency>
// https://jarcasting.com/artifacts/com.debacharya/nsgaii/
implementation 'com.debacharya:nsgaii:3.2.0'
// https://jarcasting.com/artifacts/com.debacharya/nsgaii/
implementation ("com.debacharya:nsgaii:3.2.0")
'com.debacharya:nsgaii:jar:3.2.0'
<dependency org="com.debacharya" name="nsgaii" rev="3.2.0">
<artifact name="nsgaii" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.debacharya', module='nsgaii', version='3.2.0')
)
libraryDependencies += "com.debacharya" % "nsgaii" % "3.2.0"
[com.debacharya/nsgaii "3.2.0"]
| Идентификатор библиотеки | Тип | Версия |
|---|---|---|
| org.jfree : jfreechart | jar | 1.5.3 |
| org.jfree : jcommon | jar | 1.0.24 |