Coverage for moptipy / algorithms / __init__.py: 100%

0 statements  

« prev     ^ index     » next       coverage.py v7.12.0, created at 2025-11-24 08:49 +0000

1""" 

2In this package, we provide implementations of metaheuristic algorithms. 

3 

4We divide them into single-objective algorithms, which are provided in the 

5package :mod:`moptipy.algorithms.so`, and multi-objective algorithms, 

6which can be found in package :mod:`moptipy.algorithms.mo`. 

7 

8Methods which are based on random sampling and random walks are unaffected by 

9the number of objective functions and therefore can be found in this package 

10directly. 

11 

12The black-box methods are given directly in these package, more specialized 

13algorithms will be placed in sub-packages corresponding to their requirements 

14for the search- and solution space. 

15"""