FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
CoverageControl/python/coverage_control/__init__.py at main · KumarRobotics/CoverageControl · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
KumarRobotics
/
CoverageControl
Public
Notifications
You must be signed in to change notification settings
Fork
6
Star
27
Code
Issues
1
Pull requests
1
Discussions
Actions
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
CoverageControl
/
python
/
coverage_control
/
__init__.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
26 lines (18 loc) · 706 Bytes
Breadcrumbs
CoverageControl
/
python
/
coverage_control
/
__init__.py
Copy path
File metadata and controls
26 lines (18 loc) · 706 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
"""
Copyright (c) 2024 Saurav Agarwal. All rights reserved.
coverage_control: Library for large-scale coverage control using robot swarms
"""
from
__future__
import
annotations
import
os
.
path
as
_osp
from
.
_version
import
version
as
__version__
from
.
core
import
*
from
.
io_utils
import
IOUtils
try
:
from
.
coverage_env_utils
import
CoverageEnvUtils
except
ImportError
:
# torch/torch_geometric/torchvision are optional (the [nn] extra);
# CoverageEnvUtils is unavailable without them
CoverageEnvUtils
=
None
# from .nn import *
__all__
=
[
"__version__"
,
"core"
,
"nn"
,
"IOUtils"
,
"CoverageEnvUtils"
]
cmake_prefix_path
=
_osp
.
join
(
_osp
.
dirname
(
_osp
.
dirname
(
__file__
)),
"lib"
,
"cmake"
)
Back
|
FazBrowse Home
|
New Git URL