Skip to content

aritrasep/Modof.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Multiobjective Discrete Optimization Framework in Julia

Build Status: Build Status

Documentation:

DOI: DOI

Modof.jl is a framework used for solving multiobjective mixed integer programs in Julia. It has functions for

  1. Selecting, sorting, writing and normalizing a nondominated frontier
  2. Computing ideal and nadir points of a nondominated frontier
  3. Computing the closest and the farthest point from the ideal and the nadir points respectively.
  4. Computing the quality of a nondominated frontier:
    1. Exact (for biobjective and triobjective) and approximate (for more than 4 objectives) hypervolumes
    2. Cardinality
    3. Maximum and average coverage
    4. Uniformity
  5. Plotting nondominated frontiers of:
    1. Biobjective discrete and mixed problems
    2. Triobjective discrete problems
  6. Wrappers for the following algorithms in linux:
    1. MDLS for solving multidimensional knapsack and biobjective set packing problems
    2. NSGA-II for solving biobjective binary programs

Note: Functionalities corresponding to computing quality of a nondominated frontier and plotting nondominated frontiers have been moved to pyModofSup.jl

Dependencies:

  1. Julia v1.10 or newer (tested with Julia v1.12)

Installation

Once Julia has been properly installed, the following instructions in a Julia terminal will install Modof.jl from a local checkout:

import Pkg
Pkg.develop(path="/path/to/Modof.jl")

To install directly from GitHub, use:

import Pkg
Pkg.add(url="https://github.com/aritrasep/Modof.jl")

Supporting and Citing:

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, Modolib.jl, FPBH.jl, FPBHCPLEX.jl or pyModofSup.jl software as part of your research, teaching, or other activities, we would be grateful if you could cite:

  1. Pal, A. and Charkhgard, H., A Feasibility Pump and Local Search Based Heuristic for Bi-objective Pure Integer Linear Programming.
  2. Pal, A. and Charkhgard, H., FPBH.jl: A Feasibility Pump based Heuristic for Multi-objective Mixed Integer Linear Programming in Julia

Contributions

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.