Optimisation modules built for optimization problem during thesis

Jérôme BUISINE b380d8810b Merge branch 'release/v1.0.6' 3 jaren geleden
.github f0203a9d3f check build content 3 jaren geleden
docs 7bc629b816 update readme.md content 3 jaren geleden
examples 52e603abe9 documentation updates for evaluator / opetators 3 jaren geleden
macop 52e603abe9 documentation updates for evaluator / opetators 3 jaren geleden
.gitignore 52e603abe9 documentation updates for evaluator / opetators 3 jaren geleden
CONTRIBUTING.md 287df287e2 update math syntax on paper 3 jaren geleden
LICENSE 1bb5cb9f48 start of new documentation explanation 3 jaren geleden
README.md 7bc629b816 update readme.md content 3 jaren geleden
__init__.py 0a1b108095 First version of OR framework 4 jaren geleden
build.sh 899ec8e7d3 rename all paramaters as protected 3 jaren geleden
logo_macop.png df8251b5ac new package name : macop; use of new policy for operators 3 jaren geleden
paper.bib 0e743faba7 Prepare to major version 3 jaren geleden
paper.md 287df287e2 update math syntax on paper 3 jaren geleden
requirements.txt 4fbbbf39d3 documentation updates for algorithms 3 jaren geleden
setup.py 7bc629b816 update readme.md content 3 jaren geleden

README.md

Minimalist And Customisable Optimisation Package

Description

Macop is a python package for solving discrete optimisation problems in nature. Continuous optimisation can also applicable if needed. The objective is to allow a user to exploit the basic structure proposed by this package to solve a problem specific to him. The interest is that he can quickly abstract himself from the complications related to the way of evaluating, comparing, saving the progress of the search for good solutions but rather concentrate if necessary on his own algorithm. Indeed, Macop offers the following main and basic features:

  • solutions: representation of the solution ;
  • validator: such as constraint programmig, a validator is function which is used for validate or not a solution data state ;
  • evaluator: stores problem instance data and implement a compute method in order to evaluate a solution ;
  • operators: mutators, crossovers update of solution ;
  • policies: the way you choose the available operators (might be using reinforcement learning) ;
  • algorithms: generic and implemented optimisation research algorithms ;
  • callbacks: callbacks to automatically keep track of the search space advancement.

Based on all of these generic and/or implemented functionalities, the user will be able to quickly develop a solution to his problem while retaining the possibility of remaining in control of his development by overloading existing functionalities if necessary.

Main idea about this Python package is that it does not implement the whole available algorithms in the literature but let the possibility to the user to quickly develop and test its own algorithms and strategies. The main objective of this package is to be the most flexible as possible and hence, to offer a maximum of implementation possibilities.

Documentation

Fully documentation of package with examples is available.

You can also see examples of use:

Add as dependency

git submodule add https://github.com/jbuisine/macop.git

License

The MIT License