index.rst 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. Minimalist And Customisable Optimisation Package
  2. ================================================
  3. .. image:: _static/logo_macop.png
  4. :width: 300 px
  5. :align: center
  6. What's **Macop** ?
  7. ~~~~~~~~~~~~~~~~~~
  8. **Macop** is a discrete optimisation Python package which not which doesn't implement every algorithm in the literature but provides the ability to quickly develop and test your own algorithm and strategies. The main objective of this package is to provide maximum flexibility, which allows for easy experimentation in implementation.
  9. Contents
  10. ~~~~~~~~
  11. .. toctree::
  12. :maxdepth: 1
  13. description
  14. documentations
  15. api
  16. examples
  17. contributing
  18. Motivation
  19. ~~~~~~~~~~
  20. Flexible discrete optimisation package allowing a quick implementation of your problems. In particular it meets the following needs:
  21. - **Common basis:** the interaction loop during the solution finding process proposed within the package is common to all heuristics. This allows the user to modify only a part of this interaction loop if necessary without rendering the process non-functional.
  22. - **Hierarchy:** a hierarchical algorithm management system is available, especially when an algorithm needs to manage local searches. This hierarchy remains transparent to the user. The main algorithm will be able to manage and control the process of searching for solutions.
  23. - **Flexibility:** although the algorithms are dependent on each other, it is possible that their internal management is different. This means that the ways in which solutions are evaluated and updated, for example, may be different.
  24. - **Abstraction:** thanks to the modular separability of the package, it is quickly possible to implement new problems, solutions representation, way to evaluate, update solutions within the package.
  25. - **Extensible:** the package is open to extension, i.e. it does not partition the user in these developer choices. It can just as well implement continuous optimization problems if needed while making use of the main interaction loop proposed by the package.
  26. - **Easy Setup:** as a pure Python package distributed is `pip` installable and easy to use.
  27. Indices and tables
  28. ~~~~~~~~~~~~~~~~~~
  29. * :ref:`genindex`
  30. * :ref:`modindex`
  31. * :ref:`search`