MVN

org.cicirello : interactive-bin-packing

Maven & Gradle

Aug 07, 2023
8 stars

Interactive Bin Packing Application · The Interactive Bin Packing Application provides a self-guided tutorial on combinatorial optimization, the bin packing problem, and constructive heuristics for bin packing. It also enables the user to interact with bin packing instances to explore their own problem solving strategies, or to test their knowledge of the various constructive heuristics covered by the tutorial. The application is not a solver for bin packing. The Interactive Bin Packing Application is a tool for learning about the bin packing problem, as well as for learning about heuristic techniques for solving instances of the problem.

<dependency>
    <groupId>org.cicirello</groupId>
    <artifactId>interactive-bin-packing</artifactId>
    <version>3.1.5</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.cicirello : interactive-bin-packing to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 3.1.5

All Versions

Choose a version of org.cicirello : interactive-bin-packing to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
3.1.x
interactive-bin-packing-3.1.5
interactive-bin-packing-3.1.4
interactive-bin-packing-3.1.3
interactive-bin-packing-3.1.2
interactive-bin-packing-3.1.1
interactive-bin-packing-3.1.0
3.0.x
interactive-bin-packing-3.0.1
interactive-bin-packing-3.0.0

How to add a dependency to Maven

Add the following org.cicirello : interactive-bin-packing maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.cicirello</groupId>
    <artifactId>interactive-bin-packing</artifactId>
    <version>3.1.5</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.cicirello : interactive-bin-packing gradle dependency to your build.gradle file:

implementation 'org.cicirello:interactive-bin-packing:3.1.5'

Gradle Kotlin DSL: Add the following org.cicirello : interactive-bin-packing gradle kotlin dependency to your build.gradle.kts file:

implementation("org.cicirello:interactive-bin-packing:3.1.5")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.cicirello : interactive-bin-packing sbt scala dependency to your build.sbt file:

libraryDependencies += "org.cicirello" % "interactive-bin-packing" % "3.1.5"

Advertisement