This repository extends CPLEX.jl for solving both single and multiobjective (Modof.jl) optimization problems.
Once, Julia v0.6.0 and CPLEX.jl has been properly installed, the following instructions in a Julia terminal will install CPLEXExtensions.jl on the local machine:
Pkg.clone("https://github.com/aritrasep/CPLEXExtensions.jl")
Pkg.build("CPLEXExtensions")
In case Pkg.build("CPLEXExtensions")
gives you an error on Linux, you may need to install the GMP library headers. For example, on Ubuntu/Debian and similar, give the following command from a terminal:
$ sudo apt-get install libgmp-dev
After that, restart the installation of the package with:
Pkg.build("CPLEXExtensions")
This package is written and maintained by Aritra Pal. Please fork and send a pull request or create a GitHub issue for bug reports or feature requests.