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

0 statements  

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

1""" 

2Numerical optimization algorithms working on real-valued vectors. 

3 

4The search space here is always 

5:class:`~moptipy.spaces.vectorspace.VectorSpace`, which prescribes a box in 

6the space of `n`-dimensional real vectors that is constraint by an upper and a 

7lower bound in each dimension. 

8Algorithms working on such spaces can use the rich mathematical relationships 

9and operations defined over the continuous spaces. 

10"""