Skip to content

Commit

Permalink
Updates Gurobi dependency to v11.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkratz committed May 19, 2024
1 parent fe91912 commit e489ac1
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Switching between solvers is done by changing one parameter in the solver config
## How to install the plug-in

* Install at least one of the supported ILP solvers:
* Install [Gurobi](https://www.gurobi.com/) in version `11.0.1` and activate a license for your computer.
* Install [Gurobi](https://www.gurobi.com/) in version `11.0.2` and activate a license for your computer.
* Install [GLPK](https://www.gnu.org/software/glpk/) (free and open-source) in the newest version (`4.65`) and add it to your path.
* Install [CPLEX](https://www.ibm.com/analytics/cplex-optimizer) in version `22.1.1` and activate a license for your computer (if necessary).

Expand All @@ -19,7 +19,7 @@ Switching between solvers is done by changing one parameter in the solver config
## How to build the plugin

* Install at least one of the supported ILP solvers:
* Install [Gurobi](https://www.gurobi.com/) in version `11.0.1` and activate a license for your computer.
* Install [Gurobi](https://www.gurobi.com/) in version `11.0.2` and activate a license for your computer.
* Install [GLPK](https://www.gnu.org/software/glpk/) (free and open-source) in the newest version (`4.65`) and add it to your path.
* Install [CPLEX](https://www.ibm.com/analytics/cplex-optimizer) in version `22.1.1` and activate a license for your computer (if necessary).

Expand Down
4 changes: 2 additions & 2 deletions org.emoflon.ilp.dependencies/.classpath
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry exported="true" kind="lib" path="gurobi-11.0.1.jar"/>
<classpathentry exported="true" kind="lib" path="gurobi-javadoc-11.0.1.jar"/>
<classpathentry exported="true" kind="lib" path="gurobi-11.0.2.jar"/>
<classpathentry exported="true" kind="lib" path="gurobi-javadoc-11.0.2.jar"/>
<classpathentry exported="true" kind="lib" path="glpk-java-4.65.jar"/>
<classpathentry exported="true" kind="lib" path="glpk-java-javadoc-4.65.jar"/>
<classpathentry exported="true" kind="lib" path="cplex-22.1.1.jar"/>
Expand Down
6 changes: 3 additions & 3 deletions org.emoflon.ilp.dependencies/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ Bundle-Version: 0.0.2
Bundle-ClassPath: cplex-22.1.1.jar,
glpk-java-4.65.jar,
glpk-java-javadoc-4.65.jar,
gurobi-11.0.1.jar,
gurobi-javadoc-11.0.1.jar
Export-Package: com.gurobi.gurobi;version="11.0.1",
gurobi-11.0.2.jar,
gurobi-javadoc-11.0.2.jar
Export-Package: com.gurobi.gurobi;version="11.0.2",
ilog.concert;version="22.1.1",
ilog.cplex;version="22.1.1",
org.gnu.glpk;version="4.65.0"
Expand Down
4 changes: 2 additions & 2 deletions org.emoflon.ilp.dependencies/build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ bin.includes = META-INF/,\
glpk-java-4.65.jar,\
glpk-java-javadoc-4.65.jar,\
cplex-22.1.1.jar,\
gurobi-11.0.1.jar,\
gurobi-javadoc-11.0.1.jar
gurobi-11.0.2.jar,\
gurobi-javadoc-11.0.2.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<tycho.version>4.0.7</tycho.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.resource.version>3.3.1</maven.resource.version>
<ld.library.path>/opt/gurobi1101/linux64/lib/:/opt/ibm/ILOG/CPLEX_Studio2211/cplex/bin/x86-64_linux/</ld.library.path>
<ld.library.path>/opt/gurobi1102/linux64/lib/:/opt/ibm/ILOG/CPLEX_Studio2211/cplex/bin/x86-64_linux/</ld.library.path>
</properties>

<modules>
Expand Down
6 changes: 3 additions & 3 deletions scripts/env.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
LD_LIBRARY_PATH=/opt/gurobi1101/linux64/lib/:/opt/ibm/ILOG/CPLEX_Studio2211/cplex/bin/x86-64_linux/
GUROBI_HOME=/opt/gurobi1101/linux64/
LD_LIBRARY_PATH=/opt/gurobi1102/linux64/lib/:/opt/ibm/ILOG/CPLEX_Studio2211/cplex/bin/x86-64_linux/
GUROBI_HOME=/opt/gurobi1102/linux64/
GRB_LICENSE_FILE=/home/mkratz/gurobi.lic
PATH=$PATH:/opt/gurobi1101/linux64/bin:/opt/ibm/ILOG/CPLEX_Studio2211/cplex/bin/x86-64_linux/
PATH=$PATH:/opt/gurobi1102/linux64/bin:/opt/ibm/ILOG/CPLEX_Studio2211/cplex/bin/x86-64_linux/

0 comments on commit e489ac1

Please sign in to comment.