Coverage Control Library
Loading...
Searching...
No Matches
__init__.py
Go to the documentation of this file.
1
"""
2
Copyright (c) 2024 Saurav Agarwal. All rights reserved.
3
4
coverage_control: Library for large-scale coverage control using robot swarms
5
"""
6
7
from
__future__
import
annotations
8
9
import
os.path
as
_osp
10
11
from
._version
import
version
as
__version__
12
from
.core
import
*
13
from
.io_utils
import
IOUtils
14
from
.coverage_env_utils
import
CoverageEnvUtils
15
16
# from .nn import *
17
18
__all__ = [
"__version__"
,
"core"
,
"nn"
,
"IOUtils"
,
"CoverageEnvUtils"
]
19
20
cmake_prefix_path = _osp.join(_osp.dirname(_osp.dirname(__file__)),
"lib"
,
"cmake"
)
python
coverage_control
__init__.py
Generated by
1.12.0