MVN

de.xypron.jcobyla : jcobyla

Maven & Gradle

May 31, 2022
2 stars

jcobyla · COBYLA2 is an implementation of Powell's nonlinear derivative free constrained optimization that uses a linear approximation approach. The algorithm is a sequential trust region algorithm that employs linear approximations to the objective and constraint functions, where the approximations are formed by linear interpolation at n + 1 points in the space of the variables and tries to maintain a regular shaped simplex over iterations. It solves nonsmooth NLP with a moderate number of variables (about 100). Inequality constraints only. The initial point X is taken as one vertex of the initial simplex with zero being another, so, X should not be entered as the zero vector.

<dependency>
    <groupId>de.xypron.jcobyla</groupId>
    <artifactId>jcobyla</artifactId>
    <version>1.4</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of de.xypron.jcobyla : jcobyla to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.4

All Versions

Choose a version of de.xypron.jcobyla : jcobyla to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.4
jcobyla-1.4
1.3
jcobyla-1.3
1.2
jcobyla-1.2
1.1
jcobyla-1.1

How to add a dependency to Maven

Add the following de.xypron.jcobyla : jcobyla maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>de.xypron.jcobyla</groupId>
    <artifactId>jcobyla</artifactId>
    <version>1.4</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following de.xypron.jcobyla : jcobyla gradle dependency to your build.gradle file:

implementation 'de.xypron.jcobyla:jcobyla:1.4'

Gradle Kotlin DSL: Add the following de.xypron.jcobyla : jcobyla gradle kotlin dependency to your build.gradle.kts file:

implementation("de.xypron.jcobyla:jcobyla:1.4")

How to add a dependency to SBT Scala

SBT Scala: Add the following de.xypron.jcobyla : jcobyla sbt scala dependency to your build.sbt file:

libraryDependencies += "de.xypron.jcobyla" % "jcobyla" % "1.4"