sierra-research 1.2.22__py3-none-any.whl → 1.3.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- sierra/__init__.py +1 -13
- sierra/core/__init__.py +1 -13
- sierra/core/cmdline.py +2 -14
- sierra/core/config.py +3 -14
- sierra/core/experiment/__init__.py +1 -13
- sierra/core/experiment/bindings.py +1 -13
- sierra/core/experiment/definition.py +1 -13
- sierra/core/experiment/spec.py +1 -13
- sierra/core/experiment/xml.py +1 -13
- sierra/core/generators/controller_generator_parser.py +1 -13
- sierra/core/generators/exp_creator.py +1 -13
- sierra/core/generators/exp_generators.py +1 -13
- sierra/core/generators/generator_factory.py +1 -13
- sierra/core/graphs/heatmap.py +1 -13
- sierra/core/graphs/scatterplot2D.py +1 -13
- sierra/core/graphs/stacked_line_graph.py +10 -19
- sierra/core/graphs/stacked_surface_graph.py +1 -13
- sierra/core/graphs/summary_line_graph.py +1 -13
- sierra/core/hpc/__init__.py +1 -13
- sierra/core/hpc/cmdline.py +1 -13
- sierra/core/logging.py +7 -28
- sierra/core/models/__init__.py +1 -13
- sierra/core/models/graphs.py +1 -14
- sierra/core/models/interface.py +1 -13
- sierra/core/pipeline/__init__.py +1 -13
- sierra/core/pipeline/pipeline.py +1 -13
- sierra/core/pipeline/stage1/__init__.py +0 -1
- sierra/core/pipeline/stage1/pipeline_stage1.py +1 -13
- sierra/core/pipeline/stage2/__init__.py +0 -1
- sierra/core/pipeline/stage2/exp_runner.py +5 -17
- sierra/core/pipeline/stage2/pipeline_stage2.py +1 -13
- sierra/core/pipeline/stage3/__init__.py +0 -1
- sierra/core/pipeline/stage3/imagizer.py +3 -14
- sierra/core/pipeline/stage3/pipeline_stage3.py +1 -13
- sierra/core/pipeline/stage3/run_collator.py +1 -13
- sierra/core/pipeline/stage3/statistics_calculator.py +1 -13
- sierra/core/pipeline/stage4/__init__.py +2 -3
- sierra/core/pipeline/stage4/graph_collator.py +1 -13
- sierra/core/pipeline/stage4/inter_exp_graph_generator.py +1 -13
- sierra/core/pipeline/stage4/intra_exp_graph_generator.py +1 -13
- sierra/core/pipeline/stage4/model_runner.py +1 -13
- sierra/core/pipeline/stage4/pipeline_stage4.py +1 -13
- sierra/core/pipeline/stage4/rendering.py +1 -13
- sierra/core/pipeline/stage4/yaml_config_loader.py +1 -13
- sierra/core/pipeline/stage5/__init__.py +0 -1
- sierra/core/pipeline/stage5/inter_scenario_comparator.py +1 -13
- sierra/core/pipeline/stage5/intra_scenario_comparator.py +1 -14
- sierra/core/pipeline/stage5/pipeline_stage5.py +1 -13
- sierra/core/platform.py +1 -13
- sierra/core/plugin.py +1 -13
- sierra/core/plugin_manager.py +1 -13
- sierra/core/root_dirpath_generator.py +6 -14
- sierra/core/ros1/__init__.py +1 -13
- sierra/core/ros1/callbacks.py +1 -13
- sierra/core/ros1/cmdline.py +1 -13
- sierra/core/ros1/generators.py +1 -13
- sierra/core/ros1/variables/__init__.py +1 -13
- sierra/core/ros1/variables/exp_setup.py +1 -13
- sierra/core/startup.py +6 -17
- sierra/core/stat_kernels.py +1 -13
- sierra/core/storage.py +1 -13
- sierra/core/types.py +1 -13
- sierra/core/utils.py +1 -13
- sierra/core/variables/__init__.py +1 -13
- sierra/core/variables/base_variable.py +1 -13
- sierra/core/variables/batch_criteria.py +1 -13
- sierra/core/variables/exp_setup.py +1 -13
- sierra/core/variables/population_size.py +1 -13
- sierra/core/variables/variable_density.py +1 -13
- sierra/core/vector.py +1 -13
- sierra/main.py +25 -14
- sierra/plugins/__init__.py +1 -13
- sierra/plugins/hpc/__init__.py +1 -13
- sierra/plugins/hpc/adhoc/__init__.py +1 -13
- sierra/plugins/hpc/adhoc/plugin.py +1 -13
- sierra/plugins/hpc/local/__init__.py +1 -13
- sierra/plugins/hpc/local/plugin.py +1 -13
- sierra/plugins/hpc/pbs/__init__.py +1 -13
- sierra/plugins/hpc/pbs/plugin.py +1 -13
- sierra/plugins/hpc/slurm/__init__.py +1 -13
- sierra/plugins/hpc/slurm/plugin.py +1 -13
- sierra/plugins/platform/__init__.py +1 -13
- sierra/plugins/platform/argos/__init__.py +1 -13
- sierra/plugins/platform/argos/cmdline.py +1 -13
- sierra/plugins/platform/argos/generators/__init__.py +1 -13
- sierra/plugins/platform/argos/generators/platform_generators.py +1 -13
- sierra/plugins/platform/argos/plugin.py +7 -15
- sierra/plugins/platform/argos/variables/__init__.py +1 -13
- sierra/plugins/platform/argos/variables/arena_shape.py +1 -13
- sierra/plugins/platform/argos/variables/cameras.py +1 -13
- sierra/plugins/platform/argos/variables/constant_density.py +1 -13
- sierra/plugins/platform/argos/variables/exp_setup.py +1 -13
- sierra/plugins/platform/argos/variables/physics_engines.py +1 -13
- sierra/plugins/platform/argos/variables/population_constant_density.py +1 -13
- sierra/plugins/platform/argos/variables/population_size.py +1 -13
- sierra/plugins/platform/argos/variables/population_variable_density.py +1 -13
- sierra/plugins/platform/argos/variables/rendering.py +1 -13
- sierra/plugins/platform/ros1gazebo/__init__.py +1 -13
- sierra/plugins/platform/ros1gazebo/cmdline.py +1 -13
- sierra/plugins/platform/ros1gazebo/generators/__init__.py +1 -13
- sierra/plugins/platform/ros1gazebo/generators/platform_generators.py +1 -13
- sierra/plugins/platform/ros1gazebo/plugin.py +1 -13
- sierra/plugins/platform/ros1gazebo/variables/__init__.py +1 -13
- sierra/plugins/platform/ros1gazebo/variables/population_size.py +1 -13
- sierra/plugins/platform/ros1robot/__init__.py +1 -13
- sierra/plugins/platform/ros1robot/cmdline.py +1 -13
- sierra/plugins/platform/ros1robot/generators/__init__.py +1 -13
- sierra/plugins/platform/ros1robot/generators/platform_generators.py +1 -13
- sierra/plugins/platform/ros1robot/plugin.py +1 -13
- sierra/plugins/platform/ros1robot/variables/__init__.py +1 -13
- sierra/plugins/platform/ros1robot/variables/population_size.py +1 -13
- sierra/plugins/robot/__init__.py +1 -13
- sierra/plugins/robot/turtlebot3/__init__.py +1 -13
- sierra/plugins/robot/turtlebot3/plugin.py +1 -13
- sierra/plugins/storage/__init__.py +1 -13
- sierra/plugins/storage/csv/__init__.py +1 -13
- sierra/plugins/storage/csv/plugin.py +1 -13
- sierra/version.py +3 -14
- {sierra_research-1.2.22.data → sierra_research-1.3.5.data}/data/share/man/man1/sierra-cli.1 +6 -5
- {sierra_research-1.2.22.data → sierra_research-1.3.5.data}/data/share/man/man7/sierra-examples.7 +1 -1
- {sierra_research-1.2.22.data → sierra_research-1.3.5.data}/data/share/man/man7/sierra-exec-envs.7 +1 -1
- {sierra_research-1.2.22.data → sierra_research-1.3.5.data}/data/share/man/man7/sierra-glossary.7 +1 -1
- {sierra_research-1.2.22.data → sierra_research-1.3.5.data}/data/share/man/man7/sierra-platforms.7 +1 -1
- {sierra_research-1.2.22.data → sierra_research-1.3.5.data}/data/share/man/man7/sierra-usage.7 +1 -1
- {sierra_research-1.2.22.data → sierra_research-1.3.5.data}/data/share/man/man7/sierra.7 +1 -1
- sierra_research-1.3.5.dist-info/LICENSE +18 -0
- {sierra_research-1.2.22.dist-info → sierra_research-1.3.5.dist-info}/METADATA +10 -16
- sierra_research-1.3.5.dist-info/RECORD +133 -0
- {sierra_research-1.2.22.dist-info → sierra_research-1.3.5.dist-info}/WHEEL +1 -1
- sierra_research-1.2.22.dist-info/LICENSE.md +0 -674
- sierra_research-1.2.22.dist-info/RECORD +0 -133
- {sierra_research-1.2.22.dist-info → sierra_research-1.3.5.dist-info}/entry_points.txt +0 -0
- {sierra_research-1.2.22.dist-info → sierra_research-1.3.5.dist-info}/top_level.txt +0 -0
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2021 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
"""Classes for generating common XML modifications for :term:`ARGoS`.
|
17
5
|
|
18
6
|
I.e., changes which are platform-specific, but applicable to all projects using
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2021 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
|
17
5
|
# Core packages
|
18
6
|
import argparse
|
@@ -263,6 +251,7 @@ class ExpConfigurer():
|
|
263
251
|
class ExecEnvChecker(platform.ExecEnvChecker):
|
264
252
|
def __init__(self, cmdopts: types.Cmdopts) -> None:
|
265
253
|
super().__init__(cmdopts)
|
254
|
+
self.logger = logging.getLogger('platform.argos')
|
266
255
|
|
267
256
|
def __call__(self) -> None:
|
268
257
|
keys = ['ARGOS_PLUGIN_PATH']
|
@@ -277,12 +266,15 @@ class ExecEnvChecker(platform.ExecEnvChecker):
|
|
277
266
|
# Check ARGoS version
|
278
267
|
stdout = proc.stdout.decode('utf-8')
|
279
268
|
stderr = proc.stderr.decode('utf-8')
|
280
|
-
res = re.search(r'beta[0-9]+', stdout)
|
269
|
+
res = re.search(r'[0-9]+.[0-9]+.[0-9]+-beta[0-9]+', stdout)
|
281
270
|
assert res is not None, \
|
282
271
|
f"ARGOS_VERSION not in stdout: stdout='{stdout}',stderr='{stderr}'"
|
283
272
|
|
273
|
+
self.logger.trace("Parsed ARGOS_VERSION: %s", # type: ignore
|
274
|
+
res.group(0))
|
275
|
+
|
284
276
|
version = packaging.version.parse(res.group(0))
|
285
|
-
min_version =
|
277
|
+
min_version = config.kARGoS['min_version']
|
286
278
|
|
287
279
|
assert version >= min_version,\
|
288
280
|
f"ARGoS version {version} < min required {min_version}"
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2022 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
|
17
5
|
# Core packages
|
18
6
|
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2018 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
|
17
5
|
# Core packages
|
18
6
|
import typing as tp
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2020 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
|
17
5
|
"""Classes for specifying ARGoS cameras.
|
18
6
|
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2018 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
#
|
17
5
|
|
18
6
|
# Core packages
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2021 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
|
17
5
|
"""Classes for the ``--exp-setup`` cmdline option.
|
18
6
|
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2018 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
|
17
5
|
"""Classes mapping an extent to a set of non-overlapping ARGoS physics engines.
|
18
6
|
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2021 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
#
|
17
5
|
"""Classes for the constant population density batch criteria.
|
18
6
|
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2020 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
"""Classes for the population size batch criteria.
|
17
5
|
|
18
6
|
See :ref:`ln-sierra-platform-argos-bc-population-size` for usage documentation.
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2021 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
#
|
17
5
|
"""Classes for the variable population density batch criteria.
|
18
6
|
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2021 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
|
17
5
|
"""
|
18
6
|
ARGoS headless QT rendering configuration.
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2021 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
|
17
5
|
# Core packages
|
18
6
|
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2021 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
#
|
17
5
|
"""
|
18
6
|
Command line parsing and validation for the :term:`ROS1+Gazebo` platform.
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2022 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
|
17
5
|
# Core packages
|
18
6
|
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2021 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
"""Classes for generating common XML modifications for :term:`ROS1+Gazebo`.
|
17
5
|
|
18
6
|
I.e., changes which are platform-specific, but applicable to all projects using
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2021 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
"""
|
17
5
|
Provides platform-specific callbacks for the :term:`ROS1+Gazebo` platform.
|
18
6
|
"""
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2021 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
|
17
5
|
# Core packages
|
18
6
|
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2020 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
"""Classes for the population size batch criteria.
|
17
5
|
|
18
6
|
See :ref:`ln-sierra-platform-ros1gazebo-bc-population-size` for usage
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2021 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
|
17
5
|
# Core packages
|
18
6
|
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2021 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
#
|
17
5
|
"""
|
18
6
|
Command line parsing and validation for the :term:`ROS1+robot` platform.
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2022 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
|
17
5
|
# Core packages
|
18
6
|
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2021 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
"""Classes for generating common XML modifications to :term:`ROS1` input files.
|
17
5
|
|
18
6
|
I.e., changes which are platform-specific, but applicable to all projects using
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2021 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
|
17
5
|
# Core packages
|
18
6
|
import argparse
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2021 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
|
17
5
|
# Core packages
|
18
6
|
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2020 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
"""Classes for the population size batch criteria.
|
17
5
|
|
18
6
|
See :ref:`ln-sierra-platform-ros1robot-bc-population-size` for usage
|
sierra/plugins/robot/__init__.py
CHANGED
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2021 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
|
17
5
|
# Core packages
|
18
6
|
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2021 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
|
17
5
|
# Core packages
|
18
6
|
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2021 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
"""
|
17
5
|
Robot plugin for running SIERRA with a set of Turtlebot3 robots.
|
18
6
|
|
@@ -1,18 +1,6 @@
|
|
1
1
|
# Copyright 2021 John Harwell, All rights reserved.
|
2
2
|
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# SIERRA is free software: you can redistribute it and/or modify it under the
|
6
|
-
# terms of the GNU General Public License as published by the Free Software
|
7
|
-
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
-
# version.
|
9
|
-
#
|
10
|
-
# SIERRA is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License along with
|
15
|
-
# SIERRA. If not, see <http://www.gnu.org/licenses/
|
3
|
+
# SPDX-License-Identifier: MIT
|
16
4
|
|
17
5
|
# Core packages
|
18
6
|
|