Skip to content

Commit

Permalink
Updates Gurobi to v10.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkratz committed Sep 22, 2023
1 parent 83c169f commit fc72bb9
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 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 `10.0.2` and activate a license for your computer.
* Install [Gurobi](https://www.gurobi.com/) in version `10.0.3` 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 `10.0.2` and activate a license for your computer.
* Install [Gurobi](https://www.gurobi.com/) in version `10.0.3` 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-10.0.2.jar"/>
<classpathentry exported="true" kind="lib" path="gurobi-javadoc-10.0.2.jar"/>
<classpathentry exported="true" kind="lib" path="gurobi-10.0.3.jar"/>
<classpathentry exported="true" kind="lib" path="gurobi-javadoc-10.0.3.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.1.qualifier
Bundle-ClassPath: cplex-22.1.1.jar,
glpk-java-4.65.jar,
glpk-java-javadoc-4.65.jar,
gurobi-10.0.2.jar,
gurobi-javadoc-10.0.2.jar
Export-Package: gurobi;version="10.0.2",
gurobi-10.0.3.jar,
gurobi-javadoc-10.0.3.jar
Export-Package: gurobi;version="10.0.3",
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-10.0.2.jar,\
gurobi-javadoc-10.0.2.jar
gurobi-10.0.3.jar,\
gurobi-javadoc-10.0.3.jar
Binary file not shown.
Binary file not shown.
6 changes: 3 additions & 3 deletions scripts/env.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set -e
export LD_LIBRARY_PATH=/opt/gurobi1002/linux64/lib/:/opt/ibm/ILOG/CPLEX_Studio2211/cplex/bin/x86-64_linux/
export GUROBI_HOME=/opt/gurobi1002/linux64/
export LD_LIBRARY_PATH=/opt/gurobi1003/linux64/lib/:/opt/ibm/ILOG/CPLEX_Studio2211/cplex/bin/x86-64_linux/
export GUROBI_HOME=/opt/gurobi1003/linux64/
export GRB_LICENSE_FILE=/home/mkratz/gurobi.lic
export PATH=$PATH:/opt/gurobi1002/linux64/bin:/opt/ibm/ILOG/CPLEX_Studio2211/cplex/bin/x86-64_linux/
export PATH=$PATH:/opt/gurobi1003/linux64/bin:/opt/ibm/ILOG/CPLEX_Studio2211/cplex/bin/x86-64_linux/

0 comments on commit fc72bb9

Please sign in to comment.