Plan-repair (2/3): omniplanner_repair_node with constraint merging via plugin#28
Open
JY-HIM4U wants to merge 1 commit into
Open
Plan-repair (2/3): omniplanner_repair_node with constraint merging via plugin#28JY-HIM4U wants to merge 1 commit into
JY-HIM4U wants to merge 1 commit into
Conversation
…a plugin
Avoid duplicating register_plugin; let the plugin do the work.
- omniplanner_msgs: ConstraintList.msg for persistent ~/constraints topic
- omniplanner_node: small extension point — plan_handler calls
plugin.on_plan_compiled(plans, plan_dict) if defined. Plugins that
don't define it are unaffected.
- multirobot_ros: new MultiRobotPddlConstrainedPlannerRos plugin
- subscribes to ConstrainedPddlGoalMsg (from PR 1)
- merges persistent constraints from node.active_constraints with
per-message constraints into a PddlGoal.constraints list
- on_plan_compiled hook publishes per-robot visited POIs to
/<robot>/omniplanner_node/plan_visited_pois
- omniplanner_repair_node: thin OmniPlannerRos subclass — adds
~/constraints topic and active_constraints state. No register_plugin
override; no plan-handling duplication.
9259fdc to
d2332dc
Compare
99348c9 to
424a366
Compare
4a9cc15 to
90b3b4c
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds the omniplanner_repair_node and a constraint-aware plugin that consumes ConstrainedPddlGoalMsg. Persistent constraints flow in through ~/constraints; per-message constraints ride along with the goal. Both are merged into goal.constraints before grounding (the field added in PR 1).
This is 2 of 3 in a stacked series: