PyRCH 0.0.1__tar.gz → 0.1.0__tar.gz
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.
- {pyrch-0.0.1 → pyrch-0.1.0}/PKG-INFO +2 -2
- {pyrch-0.0.1 → pyrch-0.1.0}/README.md +1 -1
- {pyrch-0.0.1 → pyrch-0.1.0}/example/verify_examples.py +1 -1
- {pyrch-0.0.1 → pyrch-0.1.0}/pyproject.toml +1 -1
- {pyrch-0.0.1 → pyrch-0.1.0}/rch/__init__.py +1 -1
- {pyrch-0.0.1 → pyrch-0.1.0}/.github/workflows/publish-pypi.yml +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/.gitignore +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/CMakeLists.txt +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/README.md +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/prog/json_solver.cpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/binary_set.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/debug.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/graph.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/include/experiment_map.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/include/experiment_runner.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/include/search_LKH_mtsp.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/include/search_greedy_mtsp.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/include/solver_types.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/constraint.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/options.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/constraint_checker/composite_constraint_checker.cpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/constraint_checker/composite_constraint_checker.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/constraint_checker/default_constraint_checker.cpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/constraint_checker/default_constraint_checker.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/constraint_checker/time_limit_constraint_checker.cpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/constraint_checker/time_limit_constraint_checker.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/constraint_checker/time_window_constraint_checker.cpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/constraint_checker/time_window_constraint_checker.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/expansion/default_expansion.cpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/expansion/default_expansion.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/focal_comparator/default_focal_comparator.cpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/focal_comparator/default_focal_comparator.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/focal_comparator/fvalue_focal_comparator.cpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/focal_comparator/fvalue_focal_comparator.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/heuristic/default_heuristic.cpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/heuristic/default_heuristic.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/heuristic/zero_heuristic.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/objective/default_objective.cpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/objective/default_objective.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/objective/min_sum_objective.cpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/objective/min_sum_objective.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/plugin.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/post_optimizer/composite_post_optimizer.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/post_optimizer/default_post_optimizer.cpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/post_optimizer/default_post_optimizer.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/post_optimizer/no_op_post_optimizer.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/post_optimizer/route_merging_post_optimizer.cpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/post_optimizer/route_merging_post_optimizer.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/problem.cpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/problem.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/solution.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/solver.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/types.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/source/binary_set.cpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/source/experiment_map.cpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/source/experiment_runner.cpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/source/graph.cpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/source/graph_io.cpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/source/search_LKH_mtsp.cpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/source/search_greedy_mtsp.cpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/source/solver.cpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/source/solver_types.cpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/type_def.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/utils/bitsets.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/utils/path.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/utils/statis.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/utils/timer.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/vec_type.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/third_party/CLI11.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/third_party/catch.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/cpp/third_party/json.hpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/docs/architecture.md +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/docs/tools.md +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/example/01_solve_from_dict.py +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/example/02_solve_from_json_inputs.py +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/example/03_planner_api.py +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/example/04_low_level_api.py +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/example/05_visualization.py +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/example/README.md +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/example/common.py +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/example/data/problem.json +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/example/data/verify_problem.json +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/example/output/planner_map.png +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/example/output/planner_result.png +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/python/CMakeLists.txt +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/python/rch_bind.cpp +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/rch/_api.py +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/rch/_viz.py +0 -0
- {pyrch-0.0.1 → pyrch-0.1.0}/tools/compile +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: PyRCH
|
|
3
|
-
Version: 0.0
|
|
3
|
+
Version: 0.1.0
|
|
4
4
|
Summary: RCH: Partial-Expansion Anytime Focal Search solver for heterogeneous multi-agent TSP
|
|
5
5
|
Keywords: mtsp,tsp,multi-agent,path-planning,routing,heterogeneous-agents
|
|
6
6
|
Author: MTSP-Solver Team
|
|
@@ -80,7 +80,7 @@ twine upload dist/pyrch-*.tar.gz
|
|
|
80
80
|
To publish wheels:
|
|
81
81
|
|
|
82
82
|
1. Configure PyPI Trusted Publishing for this repository.
|
|
83
|
-
2. Push a version tag such as `
|
|
83
|
+
2. Push a version tag such as `v1.0.0`.
|
|
84
84
|
3. Let `.github/workflows/publish-pypi.yml` build and upload the wheels plus sdist.
|
|
85
85
|
|
|
86
86
|
---
|
|
@@ -57,7 +57,7 @@ twine upload dist/pyrch-*.tar.gz
|
|
|
57
57
|
To publish wheels:
|
|
58
58
|
|
|
59
59
|
1. Configure PyPI Trusted Publishing for this repository.
|
|
60
|
-
2. Push a version tag such as `
|
|
60
|
+
2. Push a version tag such as `v1.0.0`.
|
|
61
61
|
3. Let `.github/workflows/publish-pypi.yml` build and upload the wheels plus sdist.
|
|
62
62
|
|
|
63
63
|
---
|
|
@@ -36,7 +36,7 @@ def _assert(condition: bool, message: str) -> None:
|
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
def verify_public_api() -> dict:
|
|
39
|
-
_assert(rch.__version__ == "0.0
|
|
39
|
+
_assert(rch.__version__ == "0.1.0", "unexpected version")
|
|
40
40
|
_assert(all(hasattr(rch, name) for name in rch.__all__), "__all__ is incomplete")
|
|
41
41
|
_assert(importlib.util.find_spec("peaf") is None, "legacy peaf module should not exist")
|
|
42
42
|
|
|
@@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "PyRCH"
|
|
7
|
-
version = "0.0
|
|
7
|
+
version = "0.1.0"
|
|
8
8
|
description = "RCH: Partial-Expansion Anytime Focal Search solver for heterogeneous multi-agent TSP"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.8"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/constraint_checker/composite_constraint_checker.cpp
RENAMED
|
File without changes
|
{pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/constraint_checker/composite_constraint_checker.hpp
RENAMED
|
File without changes
|
{pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/constraint_checker/default_constraint_checker.cpp
RENAMED
|
File without changes
|
{pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/constraint_checker/default_constraint_checker.hpp
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/focal_comparator/default_focal_comparator.cpp
RENAMED
|
File without changes
|
{pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/focal_comparator/default_focal_comparator.hpp
RENAMED
|
File without changes
|
{pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/focal_comparator/fvalue_focal_comparator.cpp
RENAMED
|
File without changes
|
{pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/focal_comparator/fvalue_focal_comparator.hpp
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/post_optimizer/composite_post_optimizer.hpp
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/post_optimizer/route_merging_post_optimizer.cpp
RENAMED
|
File without changes
|
{pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/post_optimizer/route_merging_post_optimizer.hpp
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|