examples.rst 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. Example uses
  2. =====================================
  3. You will find here some examples of using Macop with implementations of problems well known from the literature.
  4. Discrete problem
  5. ----------------------------
  6. .. toctree::
  7. :maxdepth: 1
  8. qap_example
  9. ubqp_example
  10. Continuous problem
  11. ----------------------------
  12. .. toctree::
  13. :maxdepth: 1
  14. zdt_example
  15. Available code examples
  16. -----------------------
  17. - mono-objective knapsack problem: knapsackExample.py_
  18. - multi-objective knapsack problem: knapsackMultiExample.py_
  19. - QAP problem: qapExample.py_
  20. - UBQP problem: ubqpExample.py_
  21. - Continuous Zdt optimisation problem: ZdtExample.py_
  22. .. _knapsackExample.py: https://github.com/jbuisine/macop/blob/master/examples/knapsackExample.py
  23. .. _knapsackMultiExample.py: https://github.com/jbuisine/macop/blob/master/examples/knapsackMultiExample.py
  24. .. _qapExample.py: https://github.com/jbuisine/macop/blob/master/examples/qapExample.py
  25. .. _ubqpExample.py: https://github.com/jbuisine/macop/blob/master/examples/ubqpExample.py
  26. .. _ZdtExample.py: https://github.com/jbuisine/macop/blob/master/examples/ZdtExample.py