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