lp-solver
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.mohitc</groupId>
<artifactId>lp-solver</artifactId>
<version>0.0.2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.mohitc</groupId>
<artifactId>lp-solver</artifactId>
<version>0.0.2</version>
<name>io.github.mohitc.lp-solver</name>
<description>The API abstraction of a MILP solver that takes in a problem
instance as specified using the lp-api model and solves the
instance. Implementations of this API convert the model instance
to ones for a specific solver, and abstract away as many specifics
of the actual solver as feasible.</description>
<url>https://github.com/mohitc/LPFramework/lp-solver</url>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<developers>
<developer>
<name>Mohit Chamania</name>
<email>mohitc@live.de</email>
<organizationUrl>https://github.com/mohitc</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/mohitc/LPFramework.git/lp-solver</connection>
<developerConnection>scm:git:https://github.com:mohitc/LPFramework.git/lp-solver</developerConnection>
<url>https://github.com/mohitc/LPFramework/tree/main/lp-solver</url>
</scm>
<dependencies>
<dependency>
<groupId>io.github.mohitc</groupId>
<artifactId>lp-api</artifactId>
<version>0.0.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>2.3.10</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.github.microutils</groupId>
<artifactId>kotlin-logging-jvm</artifactId>
<version>3.0.5</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>