Coverage Control Library
Loading...
Searching...
No Matches
algorithms/__init__.py
Go to the documentation of this file.
1
"""
2
Provides CVT-based algorithms for coverage control.
3
"""
4
5
from
__future__
import
annotations
6
7
from
.._core
import
CentralizedCVT, ClairvoyantCVT, DecentralizedCVT, NearOptimalCVT
8
from
.controllers
import
ControllerCVT, ControllerNN
9
10
__all__ = [
"NearOptimalCVT"
,
"ClairvoyantCVT"
,
"CentralizedCVT"
,
"DecentralizedCVT"
,
"ControllerCVT"
,
"ControllerNN"
]
python
coverage_control
algorithms
__init__.py
Generated by
1.12.0