Robotics planningAdvanced

Dual-Arm Scheduling with CP-SAT

A dual-arm robot needs more than an action list; it needs a schedule that respects resources, precedence, and collision risk.

CP-SATSchedulingTAMPRobotics
Robotic drive chassis with velocity vectors, a planned trajectory, and fiducial field landmarks
Generated visual worldRobotics & planning

Motion, sensing, control loops, and plans made visible as a field of forces and trajectories.

Interactive model

Scheduling between symbolic planning and motion checks

Step through the pipeline and notice where scheduling sits before geometric verification.

Live HTML simulation · adjust the controls and watch the computed output respond.

Interactive

Learning can rank plans, but geometry still verifies them

1Symbolic skeletonplanner space
2Arm assignmentplanner space
3IK checkmotion verifier
4Collision checkmotion verifier
5Trajectorymotion verifier
6Trace logtraining data

This is a simplified teaching model. Its displayed values are computed from the controls; the article explains where the model stops.

Site connection

The TAMP roadmap compares greedy scheduling with an OR-Tools CP-SAT formulation before motion verification.

Research direction: The scheduling comparison is presented by the source as part of the broader technical roadmap.

A simplified interval model has start times sis_i, integer durations did_i, and end times ei=si+die_i=s_i+d_i.

A precedence edge iji \rightarrow j requires:

eisje_i \le s_j

Resource constraints prevent incompatible intervals from overlapping.

PrecedencePick before place; open before insert.
Arm resourceOne arm cannot execute two actions at once.
Shared workspaceDifferent arms may still conflict geometrically.
ObjectiveMinimize makespan, risk, or expected verification cost.

Definition: Scheduling a Symbolic Skeleton

A dual-arm schedule assigns each action to an arm and an integer time interval while enforcing action precedence and resource compatibility. In a CP-SAT formulation, start, duration, and end variables describe intervals; Boolean variables can represent optional arm assignments or ordering choices.

The schedule is still a candidate abstraction. It can prevent one arm from doing two actions simultaneously and encode known workspace exclusions, but only downstream IK, collision, and trajectory checks can validate the detailed geometry.

Scheduling answers who acts when under encoded constraints; motion planning answers whether those actions have executable trajectories.

Why CP-SAT Fits—and Why Greedy Still Matters

CP-SAT searches discrete assignments under logical and integer constraints. It can reason globally about precedence, alternative arms, interval overlap, synchronization, and objectives such as makespan. OR-Tools requires integer-valued models, so continuous duration estimates need an explicit time unit and conservative rounding policy.

A greedy scheduler commits to the next locally attractive assignment and is often faster and easier to inspect. Its early decisions can block useful later overlap, while a solver can revisit coupled choices. The project's public source states that greedy and OR-Tools CP-SAT scheduling are included, but presents the learned comparison as roadmap work rather than a reported benchmark.

Reference table for this concept
ApproachStrengthLimit
GreedyLow overhead and transparent choicesLocal choices can create poor global schedules
CP-SATGlobal discrete constraint reasoningModeling and solve-time overhead
Learned guidanceMay prioritize promising schedulesNeeds representative traces and verification
Motion checkerTests geometryPotentially expensive and not a scheduler

Mechanics: Variables, Constraints, and Objectives

For each action i, define start s_i, duration d_i, and end e_i = s_i + d_i. A pick-before-place rule becomes e_pick ≤ s_place. No-overlap constraints protect each arm; optional intervals can activate exactly one left- or right-arm assignment. A handoff can link the giver's and receiver's timing with equality or bounded synchronization constraints.

A shared workspace is not automatically safe because actions use different arms. A conservative model can add a unary zone resource or pairwise disjunction for known incompatible actions. The objective can minimize final completion time, but adding penalties for uncertain duration, risky overlap, or expensive verification may better reflect downstream planning cost.

All encoded constraints must be audited against the physical meaning. A CP-SAT solution is optimal only for the stated model and objective, not for omitted collision geometry.

Worked Example: Overlap, Handoff, and Makespan

Suppose left-pick L takes 3 time units, right-open R takes 2, handoff H takes 2 and requires both arms, and right-place P takes 3. L and R can begin at time 0 because they use different arms and independent workspaces. Then L ends at 3, R ends at 2, H runs from 3 to 5, and P runs from 5 to 8. The makespan is 8.

A naive sequential schedule L→R→H→P finishes at time 10. Global scheduling finds the safe overlap between L and R. But if L and R sweep through the same narrow zone, the eight-unit schedule is only symbolically valid; adding a zone no-overlap constraint may force serialization, and the motion checker must still validate the chosen paths.

If predicted durations are L=3 but occasionally 5, a brittle synchronization constraint can create execution waits. Buffering or replanning policies should reflect uncertainty rather than treating a learned point estimate as exact.

Limits and a Fair Research Comparison

Scheduling quality depends on which geometric risks are abstracted. Too few constraints produce schedules that fail during motion refinement; too many conservative exclusions erase useful parallelism. Learned overlap or duration predictions may improve the abstraction, but their mistakes require fallbacks and final checking.

A useful greedy-versus-CP-SAT experiment should report scheduling overhead, makespan after verification, number and cost of failed motion calls, task success, and median and tail end-to-end planning time on identical held-out scenes. Solver status and time limits also matter: a feasible incumbent under a short limit is not the same as a proven optimum.

Research status: the source establishes the intended scheduling stack and comparison direction, not a conclusion that CP-SAT or learned scheduling already wins.

Common Pitfalls

  • Modeling arm resources while ignoring shared-workspace collisions.
  • Converting real-valued durations to integers without documenting units and rounding.
  • Optimizing makespan only and producing risky near-collisions.
  • Treating learned duration estimates as exact.
  • Calling a time-limited feasible solution a proven optimum.

Sources and Further Reading

Related Explainers