|
| 1 | +# Multiobjective Discrete Optimization Framework in Julia # |
| 2 | + |
| 3 | +**Build Status:** |
| 4 | +[](https://travis-ci.org/aritrasep/Modof.jl) |
| 5 | + |
| 6 | +**Documentation:** |
| 7 | +[](https://aritrasep.github.io/Modof.jl/docs/build/) |
| 8 | + |
| 9 | +**DOI:** |
| 10 | +[](https://zenodo.org/badge/latestdoi/84245385) |
| 11 | + |
| 12 | +`Modof.jl` is a framework used for solving multiobjective mixed integer programs in Julia. It has functions for |
| 13 | +1. Selecting, sorting, writing and normalizing a nondominated frontier |
| 14 | +2. Computing ideal and nadir points of a nondominated frontier |
| 15 | +3. Computing the closest and the farthest point from the ideal and the nadir points respectively. |
| 16 | +4. Computing the quality of a nondominated frontier: |
| 17 | + 1. Exact (for biobjective and triobjective) and approximate (for more than 4 objectives) hypervolumes |
| 18 | + 2. Cardinality |
| 19 | + 3. Maximum and average coverage |
| 20 | + 4. Uniformity |
| 21 | +5. Plotting nondominated frontiers of: |
| 22 | + 1. Biobjective discrete and mixed problems |
| 23 | + 2. Triobjective discrete problems |
| 24 | +6. Wrappers for the following algorithms in linux: |
| 25 | + 1. [MDLS](http://prolog.univie.ac.at/research/MDLS/mdls_code.tar.gz) for solving multidimensional knapsack and biobjective set packing problems |
| 26 | + 2. [NSGA-II](http://www.iitk.ac.in/kangal/codes/nsga2/nsga2-gnuplot-v1.1.6.tar.gz) for solving biobjective binary programs |
| 27 | + |
| 28 | +**Note:** Functionalities corresponding to computing quality of a nondominated frontier and plotting nondominated frontiers have been moved to [pyModofSup.jl](https://github.com/aritrasep/pyModofSup.jl) |
| 29 | + |
| 30 | +## Dependencies: ## |
| 31 | + |
| 32 | +1. [Julia v0.6.0](https://julialang.org/downloads/) |
| 33 | + |
| 34 | +## Installation ## |
| 35 | + |
| 36 | +Once, Julia v0.6.0 has been properly installed, the following instructions in a **Julia** terminal will install **Modof.jl** on the local machine: |
| 37 | + |
| 38 | +```julia |
| 39 | +Pkg.clone("https://github.com/aritrasep/Modof.jl") |
| 40 | +Pkg.build("Modof") |
| 41 | +``` |
| 42 | + |
| 43 | +In case `Pkg.build("Modof")` 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: |
| 44 | + |
| 45 | +``` |
| 46 | +$ sudo apt-get install libgmp-dev |
| 47 | +``` |
| 48 | + |
| 49 | +After that, restart the installation of the package with: |
| 50 | + |
| 51 | +``` |
| 52 | +Pkg.build("Modof") |
| 53 | +``` |
| 54 | + |
| 55 | +## Supporting and Citing: ## |
| 56 | + |
| 57 | +The software in this ecosystem was developed as part of academic research. If you would like to help support it, please star the repository as such metrics may help us secure funding in the future. If you use [Modof.jl](https://github.com/aritrasep/Modof.jl), [Modolib.jl](https://github.com/aritrasep/Modolib.jl), [FPBH.jl](https://github.com/aritrasep/FPBH.jl), [FPBHCPLEX.jl](https://github.com/aritrasep/FPBHCPLEX.jl) or [pyModofSup.jl](https://github.com/aritrasep/pyModofSup.jl) software as part of your research, teaching, or other activities, we would be grateful if you could cite: |
| 58 | + |
| 59 | +1. [Pal, A. and Charkhgard, H., A Feasibility Pump and Local Search Based Heuristic for Bi-objective Pure Integer Linear Programming](http://www.optimization-online.org/DB_FILE/2017/03/5902.pdf). |
| 60 | +2. [Pal, A. and Charkhgard, H., FPBH.jl: A Feasibility Pump based Heuristic for Multi-objective Mixed Integer Linear Programming in Julia](http://www.optimization-online.org/DB_FILE/2017/09/6195.pdf) |
| 61 | + |
| 62 | +## Contributions ## |
| 63 | + |
| 64 | +This package is written and maintained by [Aritra Pal](https://github.com/aritrasep). Please fork and send a pull request or create a [GitHub issue](https://github.com/aritrasep/Modof.jl/issues) for bug reports or feature requests. |
0 commit comments