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.
Files changed (90) hide show
  1. {pyrch-0.0.1 → pyrch-0.1.0}/PKG-INFO +2 -2
  2. {pyrch-0.0.1 → pyrch-0.1.0}/README.md +1 -1
  3. {pyrch-0.0.1 → pyrch-0.1.0}/example/verify_examples.py +1 -1
  4. {pyrch-0.0.1 → pyrch-0.1.0}/pyproject.toml +1 -1
  5. {pyrch-0.0.1 → pyrch-0.1.0}/rch/__init__.py +1 -1
  6. {pyrch-0.0.1 → pyrch-0.1.0}/.github/workflows/publish-pypi.yml +0 -0
  7. {pyrch-0.0.1 → pyrch-0.1.0}/.gitignore +0 -0
  8. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/CMakeLists.txt +0 -0
  9. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/README.md +0 -0
  10. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/prog/json_solver.cpp +0 -0
  11. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/binary_set.hpp +0 -0
  12. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/debug.hpp +0 -0
  13. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/graph.hpp +0 -0
  14. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/include/experiment_map.hpp +0 -0
  15. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/include/experiment_runner.hpp +0 -0
  16. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/include/search_LKH_mtsp.hpp +0 -0
  17. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/include/search_greedy_mtsp.hpp +0 -0
  18. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/include/solver_types.hpp +0 -0
  19. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/constraint.hpp +0 -0
  20. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/options.hpp +0 -0
  21. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/constraint_checker/composite_constraint_checker.cpp +0 -0
  22. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/constraint_checker/composite_constraint_checker.hpp +0 -0
  23. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/constraint_checker/default_constraint_checker.cpp +0 -0
  24. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/constraint_checker/default_constraint_checker.hpp +0 -0
  25. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/constraint_checker/time_limit_constraint_checker.cpp +0 -0
  26. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/constraint_checker/time_limit_constraint_checker.hpp +0 -0
  27. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/constraint_checker/time_window_constraint_checker.cpp +0 -0
  28. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/constraint_checker/time_window_constraint_checker.hpp +0 -0
  29. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/expansion/default_expansion.cpp +0 -0
  30. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/expansion/default_expansion.hpp +0 -0
  31. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/focal_comparator/default_focal_comparator.cpp +0 -0
  32. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/focal_comparator/default_focal_comparator.hpp +0 -0
  33. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/focal_comparator/fvalue_focal_comparator.cpp +0 -0
  34. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/focal_comparator/fvalue_focal_comparator.hpp +0 -0
  35. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/heuristic/default_heuristic.cpp +0 -0
  36. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/heuristic/default_heuristic.hpp +0 -0
  37. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/heuristic/zero_heuristic.hpp +0 -0
  38. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/objective/default_objective.cpp +0 -0
  39. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/objective/default_objective.hpp +0 -0
  40. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/objective/min_sum_objective.cpp +0 -0
  41. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/objective/min_sum_objective.hpp +0 -0
  42. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/plugin.hpp +0 -0
  43. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/post_optimizer/composite_post_optimizer.hpp +0 -0
  44. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/post_optimizer/default_post_optimizer.cpp +0 -0
  45. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/post_optimizer/default_post_optimizer.hpp +0 -0
  46. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/post_optimizer/no_op_post_optimizer.hpp +0 -0
  47. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/post_optimizer/route_merging_post_optimizer.cpp +0 -0
  48. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins/post_optimizer/route_merging_post_optimizer.hpp +0 -0
  49. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/plugins.hpp +0 -0
  50. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/problem.cpp +0 -0
  51. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/problem.hpp +0 -0
  52. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/solution.hpp +0 -0
  53. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/solver.hpp +0 -0
  54. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/mtsp/types.hpp +0 -0
  55. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/source/binary_set.cpp +0 -0
  56. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/source/experiment_map.cpp +0 -0
  57. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/source/experiment_runner.cpp +0 -0
  58. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/source/graph.cpp +0 -0
  59. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/source/graph_io.cpp +0 -0
  60. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/source/search_LKH_mtsp.cpp +0 -0
  61. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/source/search_greedy_mtsp.cpp +0 -0
  62. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/source/solver.cpp +0 -0
  63. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/source/solver_types.cpp +0 -0
  64. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/type_def.hpp +0 -0
  65. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/utils/bitsets.hpp +0 -0
  66. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/utils/path.hpp +0 -0
  67. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/utils/statis.hpp +0 -0
  68. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/utils/timer.hpp +0 -0
  69. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/src/vec_type.hpp +0 -0
  70. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/third_party/CLI11.hpp +0 -0
  71. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/third_party/catch.hpp +0 -0
  72. {pyrch-0.0.1 → pyrch-0.1.0}/cpp/third_party/json.hpp +0 -0
  73. {pyrch-0.0.1 → pyrch-0.1.0}/docs/architecture.md +0 -0
  74. {pyrch-0.0.1 → pyrch-0.1.0}/docs/tools.md +0 -0
  75. {pyrch-0.0.1 → pyrch-0.1.0}/example/01_solve_from_dict.py +0 -0
  76. {pyrch-0.0.1 → pyrch-0.1.0}/example/02_solve_from_json_inputs.py +0 -0
  77. {pyrch-0.0.1 → pyrch-0.1.0}/example/03_planner_api.py +0 -0
  78. {pyrch-0.0.1 → pyrch-0.1.0}/example/04_low_level_api.py +0 -0
  79. {pyrch-0.0.1 → pyrch-0.1.0}/example/05_visualization.py +0 -0
  80. {pyrch-0.0.1 → pyrch-0.1.0}/example/README.md +0 -0
  81. {pyrch-0.0.1 → pyrch-0.1.0}/example/common.py +0 -0
  82. {pyrch-0.0.1 → pyrch-0.1.0}/example/data/problem.json +0 -0
  83. {pyrch-0.0.1 → pyrch-0.1.0}/example/data/verify_problem.json +0 -0
  84. {pyrch-0.0.1 → pyrch-0.1.0}/example/output/planner_map.png +0 -0
  85. {pyrch-0.0.1 → pyrch-0.1.0}/example/output/planner_result.png +0 -0
  86. {pyrch-0.0.1 → pyrch-0.1.0}/python/CMakeLists.txt +0 -0
  87. {pyrch-0.0.1 → pyrch-0.1.0}/python/rch_bind.cpp +0 -0
  88. {pyrch-0.0.1 → pyrch-0.1.0}/rch/_api.py +0 -0
  89. {pyrch-0.0.1 → pyrch-0.1.0}/rch/_viz.py +0 -0
  90. {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.1
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 `v0.0.1`.
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 `v0.0.1`.
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.1", "unexpected version")
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.1"
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"
@@ -33,7 +33,7 @@ from rch._api import (
33
33
  TimeWindowConstraint,
34
34
  )
35
35
 
36
- __version__ = "0.0.1"
36
+ __version__ = "0.1.0"
37
37
 
38
38
 
39
39
  def show_map(*args, **kwargs):
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