1000 \NewEnvironproofatendProof in Appendix. +=
Proof of \pat@label.
∎
Quotient-Space Motion Planning
Abstract
A motion planning algorithm computes the motion of a robot by computing a path through its configuration space. To improve the runtime of motion planning algorithms, we propose to nest robots in each other, creating a nested quotient-space decomposition of the configuration space. Based on this decomposition we define a new roadmap-based motion planning algorithm called the Quotient-space roadMap Planner (QMP). The algorithm starts growing a graph on the lowest dimensional quotient space, switches to the next quotient space once a valid path has been found, and keeps updating the graphs on each quotient space simultaneously until a valid path in the configuration space has been found. We show that this algorithm is probabilistically complete and outperforms a set of state-of-the-art algorithms implemented in the open motion planning library (OMPL).
I Introduction
Motion planning algorithms are fundamental for robotic applications like product assembly, manufacturing, disaster response, elderly care or space exploration.
A motion planning algorithm takes as input a robot, its configuration space, an environment, a start and a goal configuration, and computes as output a path between start and goal if one exists [1]. This computation is NP-hard [2] scaling exponentially with the number of dimensions of the configuration space. Thus, the more degrees-of-freedom (dof) a robot has, the higher the runtime of the motion planning algorithm will be. This can become the limiting factor of any robotics application. It is therefore important to find suitable decompositions of the configuration space, such that a planning algorithm can quickly discover the relevant parts of the configuration space.
We developed a new decomposition of a given configuration space , which decomposes into a sequence of nested subspaces. We observe that any configuration space can be written as a product of subspaces
(1) |
This suggests we can decompose the configuration space in the following way: Start with the product of subspaces and successively remove one subspace after another. This leads to a sequence of nested subspaces as
(2) |
Each subspace in this sequence is called a quotient-space, and the sequence itself is called a quotient-space decomposition [3].
It turns out that each quotient-space can be represented by nesting a simpler robot inside the original robot. The prototypical example is a rigid body free-floating in space. The configuration space is , and we can decompose it as . The subspace is called the quotient-space and represents a sphere nested inside the rigid body, abstracting the orientations of the rigid body.
Such a decomposition is advantageous: Imagine the sphere being infeasible at point . Then the rigid body is infeasible at all configurations inside the subspace . We call this the necessary condition of nested robots.
We have developed a new algorithm, called the Quotient-space roadMap Planner (QMP), which is able to exploit such a quotient-space decomposition. We first show how to build a quotient-space decomposition for any robot in Sec. III. We then discuss the inner workings of QMP in Sec. IV, prove that QMP is probabilistically complete (Sec. V), and we develop three heuristics to improve its runtime (Sec. VI). Finally, we demonstrate that QMP (Sec. VII) can be applied to free-floating rigid bodies, free-floating articulated bodies, fixed-base serial chains and fixed-base tree chain robots.
II Related Work
We review two categories of papers. First, we review quotient-space decompositions and their application to motion planning. Second, we review alternative decomposition methods.
Quotient-space decompositions are ubiquitous in mathematics, appearing as quotient-groups in algebra, filtrations in linear algebra, or nests in functional analysis. The construction of simplicial complexes in algebraic topology is a prominent example of a quotient-space decomposition.
The application of quotient spaces to continuous spaces and decision making has been originally developed by [4] and [5]. In robotics, quotient-spaces have been used, albeit under different names. Bretl proposed a two-level decomposition: first a path on a stance graph is planned and then configurations along the path are sampled [6]. The stance graph can be seen as a quotient space of the configuration space by the stance subspaces. Grey et al. [7] use a two-level quotient space decompositions, embedding the torso inside a humanoid robot. A similar idea can be found in Tonneau et al.[8], approximating a robot by a simpler model. Both methods are similar to ours, but use only a two-level decomposition, and do not define the nesting procedure for general robots.
The closest approach to ours is the multi-level decomposition scheme by [9] whereby a sequence of nested robots is created. Their planning algorithm starts with the lowest dof robot, computes a path, and uses this path as a constraint for the next bigger robot. This approach can neither deal with non-simple paths (see Fig. 4), nor with spurious paths (see Fig. 5, Sec. VI). It is thus not complete.
Closely related is the exploration/exploitation tree (EET) algorithm [10]. The authors compute a sequence of spheres in the workspace, called a tunnel, to approximate the space of collision-free paths. However, this method is not complete, and cannot handle spurious shortest tunnels/paths (see Sec. VI).
The motion planning problem can also be decomposed without using quotient-spaces.
Kunz et al. [11] use a hierarchical rejection sampling approach to improve the Informed-RRT* algorithm [12]. While the focus is different from ours, their method is methodically similar to our algorithm, where samples are discarded if they are not necessary feasible.
Our work is closely related to low-dimensional sampling techniques which guide configuration space sampling. The algorithm by van den Berg and Overmars [13] precomputes narrow passages of the workspace and uses thoses passages to sample the space more densely in those areas. A similar idea can be found in [14], where the authors discretize the workspace, compute a shortest path in the workspace between start and goal configuration, and then sample from a cell in workspace in proportion to the cell’s distance to the shortest path. Closely related is also the dimensionality reduction method by [15], which considers ignoring paths not having a minimal swept volume.
The KPIECE algorithm [16] is another example of a hierarchical decomposition. The environment is divided into smaller and smaller boxes until a certain threshold is reached. A small box corresponds to workspace points near to a boundary. Those areas are sampled more frequently to effectively guide samples towards the configuration space boundary. This algorithm is orthogonal to ours: they decompose the environment, we decompose the robot.
III Quotient-Space Decomposition
First, we describe the idea of a quotient space and show two applications to the vector space and the manifold . Second, we show how robots can be nested in each other and thereby create a sequence of quotient spaces. Third, we show that being feasible in a quotient space is a necessary condition for being feasible in the configuration space.
III-A Quotient Space
Let be a vector space and be a subspace of . Then the quotient space of by , denoted by is the space obtained by collapsing all equivalence classes of in to zero [3]. Collapsing a space is done by creating an equivalence relation on : for all we have that if . This relation creates a partition of equivalence classes on the vector space. The set of equivalence classes is called the quotient space.




As an example, consider the vector space and its subspace . We can partition into equivalence classes of its subspace such that two points are equivalent if . We visualize this in Fig. 1, where is first partitioned into the equivalence classes of (the vertical lines), and then all lines are collapsed to yield . The point and all points on the dashed line are equivalent and therefore collapsed into the single point . We identify to denote the quotient space.
Quotient spaces generalize to manifolds [17]. Consider , the configuration space of a 2-dof fixed-base manipulator in the plane. Two points are equivalent if . The manifold can be partitioned into equivalence classes of , and then each equivalent class is collapsed to yield . This has been visualized in Fig. 2. On the left three different configurations are shown and their position in the configuration space. On the right the quotient space is shown, corresponding to a 1-dof manipulator nested inside the 2-dof manipulator. Two interesting observations can be made in the quotient space: First, the configuration is infeasible, regardless of how the second joint is moved. Second, there does not exists a path between and . This can be inferred solely from the 1-dof manipulators configuration space.
This example shows the defining feature of quotient spaces: If a robot is nested inside another robot, then the feasibility of the nested robot is a necessary condition for the feasibility of the other robot111Zhang and Zhang [4] call this the falseness-preserving property of quotient space decompositions. We will proceed to define how robots can be nested in each other, and we will show that this definition indeed leads to the necessary condition for feasibility.
III-B Nesting of Robots
A robot is nested inside another robot if two conditions are fulfilled: First, the configuration space of is a subspace of , and second, the volume of the body of at each configuration must be a subset of the volume of the body of .
Let be the configuration space of robot , and let be the volume of the body of robot at configuration .
Definition 1 (Nested Robot).
Let be given. We say that is nested in , denoted as , if
-
(1)
such that
-
(2)
for any and
whereby the operation is the cartesian product defined as .
Given a robot and a sequence of nested robots , the configuration spaces define a decomposition of as
(3) |
This decomposition will be called a quotient-space decomposition.
III-C Necessary Conditions
From Definition (2) we can infer the key property of the quotient-space decomposition: if a nested robot is infeasible, then so is the original robot.
Let denote the environment, the subset of containing obstacles. We say that robot is feasible at configuration if .
Theorem 1 (Necessary condition of nested robot).
If , , and (robot is infeasible at ), then for any (robot is infeasible everywhere).
Proof.
Since and for any , it must follow that . ∎
Theorem 1 implies that if a configuration is infeasible, then so is the subspace . We can exploit this fact to ignore subspaces of the configuration space, thereby developing a motion planning algorithm with lower runtime.
IV Quotient-Space RoadMap Planner
The Quotient-Space roadMap Planner (QMP) works as depicted in Fig. 3. On the top right the configuration space of the 2-dof fixed-base manipulator is shown with a start configuration (green) and a goal configuration (red). The corresponding start and goal configurations on the quotient-space are shown in the top left figure. In the first step, a graph is grown on the quotient space (middle left). Once a valid path has been found between start and goal configuration, a second graph is grown on the configuration space (middle right), whereby the samples are constrained to lie above the quotient-space graph. Both graphs are simultaneously grown (bottom left), until a valid path has been found on the configuration space (bottom right), or until a time limit has been reached. For more than two quotient-spaces, this idea is iteratively continued.






IV-A Quotient-Space Roadmap
To simplify the algorithmic development, we group each quotient-space with its associated objects into a tuple called the quotient-space roadmap.
Let be the -dimensional configuration space of robot . We consider a nested sequence of robots , such that is decomposed into a sequence of quotient spaces as .
To each quotient space we associate a start configuration , a goal configuration , a graph , a shortest path on between and , and a density defined on as
(4) |
whereby are the number of vertices of , is the sum of all edge lengths of , and is the -dimensional measure of . The density is used to decide which graph should be grown next.
We group all elements together into the quotient-space roadmap
(5) |
with , , .
IV-B Algorithmic Development
QMP is an adapted version of the probabilistic roadmap planner (PRM) for quotient space decompositions. We first summarize the workings of PRM, then show how QMP can be built from it.
A simplified version of PRM is depicted in Algorithm 1. While a planner terminate condition (PTC) 222A planner terminate condition (PTC) has to be chosen by a user and can be a time limit, an iterations limit, or a desired cost of the resulting path. has not been reached (Line 2), the algorithm grows a graph on the configuration space of robot (Line 3). If there exists a path on the graph between start and goal configuration (Line 4), then this path is returned (Line 5). If the PTC is reached then PRM fails and returns an empty path.
The growing of the graph is depicted in Algorithm 2. A configuration is sampled from the configuration space (Line 1). If this configuration is valid (Line 2), then it is added to the graph (Line 3) and the nearest configurations are searched (Line 4). The graph is extended in a straight line from each (Line 5) towards until it hits an obstacle (Line 6). The last configuration before the obstacle becomes , and the edge between and is added to the graph (Line 7).
QMP is depicted in Algorithm 3. An empty priority queue is constructed (Line 1), and the -th quotient roadmap is initialized (Line 3) and added to the queue (line 4). While no path between start and goal has been found (Line 5), we pop the quotient roadmap with the smallest density from the queue (line 6), grow its graph (line 7) and push it back onto the queue (line 8). Then we check if there exists a path on the current quotient space (line 9); if yes, we construct its solution (line 10), and we continue to the next quotient roadmap. For the algorithm is equivalent to PRM. For , multiple quotient spaces are inside the queue, and depending on the density function we pop one quotient space and grow its graph. The algorithm terminates if either the path has been found, or if the PTC is reached, in which case is returned.
The growing of the quotient space graph is depicted in Algorithm 5. Instead of sampling as in the PRM, we sample instead uniformly, and we pick one configuration from the graph on (Line 1). The SampleGraph samples a uniform vertex from the graph . Then a random incoming edge is chosen, and a configuration uniformly on the edge is sampled. This is called Random-Vertex-Edge (RVE) sampling [18]. The cartesian product merges the two configuration to yield a configuration on . The rest of the algorithm (line 2-7) operates as the PRM algorithm, with two exceptions. First, the R-Nearest-Neighbors method measures distance not by euclidean distance on , but by the graph distance on plus euclidean distance on (Line 4). Second, the Connect method does not interpolate along a straight line, but interpolates along the edges of the graph , while interpolating on using a straight line. For each vertex crossed on we add another configuration. The Connect method then returns a piece-wise linear (PL) path on . For each edge along this PL-path we add one edge to the graph (Line 7).
Interpolating along the graph instead of using a straight line should be seen as a change in the metric on . While a standard euclidean metric is agnostic about the graph on , our graph interpolation metric utilizes the knowledge about to improve the metric computation.
IV-C Implementation Details
Our software uses the Klamp’t [20] physical simulator, and the open motion planning library OMPL [21].
The nesting of robots has to be prespecified as a set of Unified Robot Description Format (URDF) files along with its subspaces. Each subspace is represented by an OMPL space, and our algorithm iterates through them computing the quotient spaces. We currently support the following quotient space computations: , , , , and , with and .
Our algorithm terminates after a path has been found on the configuration space, or a timelimit has been reached.
V Probabilistic Completeness
A motion planning algorithm is probabilistically complete if the probability that the algorithm will find a path if one exists approaches one as the number of sampled points increases. We will show that QMP is probabilistically complete by alluring to the probabilistic completeness of PRM [22].
The main difference of QMP and the PRM on the configuration space is the choice of a sampling sequence. For PRM the sampling sequence is dense in the configuration space, while it is not true for the sampling sequence generated by QMP. However, we will show that the sampling sequence by QMP is dense in the space of feasible configurations, thus making QMP probabilistically complete.
Let be the configuration space and be a subset. We say that is dense in if whereby is the closure of . Let be a random sequence. We say that the sequence is dense in if the set is dense in [1].
Each quotient space uses a sampling sequence as . We will show that this sequence is dense in , the feasible space of .
Theorem 2.
is dense in
Proof.
By induction for is dense in , and since , is dense in . For , we assume is dense in . Consider the sampling domain of , defined as . Due to the necessary condition of nested robots (Theorem 1), we have that if then . Thus . Since is dense in by definition, is dense in . ∎
VI Quotient-Space Heuristics
We first discuss intricacies of quotient-spaces, and then use this knowledge to design heuristics for QMP.
VI-A Quotient-Space Intricacies
Solution paths on quotient-spaces do not behave as nicely as one would expect. We show two examples where the solution path is non-simple or spurious.
VI-A1 Non-simple Paths on Quotient-Space
A non-simple path is a path with self-intersections. We say that a path is simple, if it is injective, i.e. for any : if then [23]. A path not being simple is called non-simple.
While non-simple paths do not occur in configuration spaces, they can occur in quotient spaces. Fig. 4 shows an example, where a rectangular shaped planar robot needs to move from a start configuration (green) to a goal configuration (red). The configuration space is and the quotient space is , obtained by nesting a disk inside the rectangle. The solution path is simple on , but non-simple on .



VI-A2 Spurious Shortest Path on Quotient-Space
Spurious paths are solution paths on the quotient-space which are infeasible on the configuration space. Let be a quotient space of the configuration space and let be the shortest feasible path on the quotient space between and . We say that is feasible on the configuration space, if there exists a feasible path . If is infeasible on the configuration space, we call it spurious.
Consider the example in Fig. 5, where an L-shaped robot needs to move through an environment with two passages above and below a rectangular obstacle (Left). The quotient-space is represented by a disk nested in the L-shaped robot. The shortest path on the quotient space is spurious (Middle), since the only feasible path goes above the obstacle (Right).



VI-B Heuristics
Keeping the intricacies in mind, we design three heuristics which we found to be beneficial to reduce the runtime of QMP.
VI-B1 Diminishing-Time Shortest Path Sampling
If the shortest path is spurious this often can be established quickly. We add a diminishing time heuristic to sample first the shortest path on the quotient-space with probability and decrease this probability over time with the amount of samples taken from the shortest path.
VI-B2 Graph Thickening
Often a solution path on the quotient-space is spurious, but a solution path nearby is not spurious and contains a solution on the configuration space. To alleviate this problem, we introduce an -graph thickening. Given a random sample from the graph, we add an offset uniformly distributed from a ball around with radius . This helps in finding nearby solutions. We have set for free-floating robots and for fixed-base robots.
VI-B3 Increasing Clearance
In some cases it is advantageous to inflate the shape of the nested robot such that the clearance of the solution path on the quotient space is increased. One has to be careful with this heuristic, since it trades-off completeness with efficiency. We apply this only for the free-floating robots in our experiments by increasing the size of the inscribed sphere by .
VII Experiments
We perform experiments on four different environments as shown in Fig. 8: A free-floating rigid body, a free-floating articulated body, a fixed-base serial chain and a fixed-base tree chain robot. The problem is to find a path for each robot from the initial configuration (green) to the goal configuration (red). All experiments have been perfomed on a quad core 2.6 Ghz laptop with 31 GB working memory. We perform collision detection using the proximity query package (PQP) [24].
VII-A Free-floating rigid body
The double L-shape is a rigid body consisting of two L-shapes glued together. The environment is a wall with a small square hole in it, as depicted in Fig. 8. This problem was introduced by [13] as an example of a narrow passage planning problem. We decompose the double L-shape as , as depicted in Fig. 6. We compared our algorithm QMP with three state of the art algorithms implemented in the OMPL software framework: PRM [25], bidirectional rapidly-exploring random tree (RRTConnect) [26] and the expansive space trees planner (EST) [27]. Fig. 9 shows that only QMP and PRM solved all runs, and that QMP has a median runtime of s, compared to s for PRM.



VII-B Free-floating articulated body
The mechanical snake is a 10-dof articulated body which has three links, connected each by two revolute joints with limits (See Fig. 6). The snake can freely translate and rotate in space. We found the most effective decomposition to be . QMP has a median runtime of s (s for EST). However, we can see that QMP has two outliers.
VII-C Fixed-base serial chain: KUKA LWR
The KUKA Ligthweight Robot (LWR) is a 7-dof manipulator. We consider transporting a windshield through a factory simulating a car manufacturing task. Our decomposition is . In the experiments, only QMP was able to solve all runs, with a median time of s (s for EST).
VII-D Fixed-base tree chain: Baxter
Baxter is a two-arm fixed-base robot with a tree kinematic chain having two serial chains of 7 dof for each arm, and having a total of 14 dof. We consider a maintenance task, where Baxter needs to move its arms into small openings of a defect water tank. We decompose Baxter as as depicted in Fig. 7. Only QMP was able to solve all runs, with a median runtime of s compared to s for RRTConnect.
















VIII Conclusion
We have introduced the quotient-space decomposition, a configuration space decomposition based on nested robots. To exploit this decomposition we developed the Quotient-space roadMap Planner (QMP). We showed that QMP is probabilistically complete and that QMP has lower runtime on four environments compared to state-of-the-art motion planning algorithms implemented in the OMPL software.
We like to extend QMP in three directions. First, the quotient-space decomposition of a configuration space is not unique, and has to be specified by a human operator. We like to investigate which decomposition is optimal, and automate its specification. Second, we like to generalize our approach to closed kinematic chains, constraint manifolds, and dynamic constraints. Finally, we like to apply the quotient-space decomposition to environments changing over time, where a roadmap on the quotient space could improve fast decision making.
References
- LaValle [2006] S. M. LaValle. Planning Algorithms. Cambridge University Press, 2006.
- Reif [1979] John H Reif. Complexity of the mover’s problem and generalizations. In Conference on Foundations of Computer Science, pages 421–427, 1979.
- Munkres [2000] James Munkres. Topology. Pearson, 2000.
- Zhang and Zhang [2004] Ling Zhang and Bo Zhang. The quotient space theory of problem solving. Fundamenta Informaticae, 59(2-3):287–298, 2004.
- Yao et al. [2013] Jing Tao Yao, Athanasios V Vasilakos, and Witold Pedrycz. Granular computing: perspectives and challenges. Transactions on Cybernetics, 43(6):1977–1989, 2013.
- Bretl [2006] Timothy Bretl. Motion planning of multi-limbed robots subject to equilibrium constraints: The free-climbing robot problem. International Journal of Robotics Research, 25(4):317–342, 2006.
- Grey et al. [2017] Michael X Grey, Aaron D Ames, and C Karen Liu. Footstep and motion planning in semi-unstructured environments using randomized possibility graphs. In IEEE International Conference on Robotics and Automation, 2017.
- Tonneau et al. [2018] S. Tonneau, A. D. Prete, J. Pettré, C. Park, D. Manocha, and N. Mansard. An Efficient Acyclic Contact Planner for Multiped Robots. Transactions on Robotics, 34(3):586–601, June 2018.
- Zhang et al. [2009] Liangjun Zhang, Jia Pan, and Dinesh Manocha. Motion planning of human-like robots using constrained coordination. In IEEE International Conference on Humanoid Robots, 2009.
- Rickert et al. [2014] Markus Rickert, Arne Sieverling, and Oliver Brock. Balancing exploration and exploitation in sampling-based motion planning. Transactions on Robotics, 30(6):1305–1317, 2014.
- Kunz et al. [2016] Tobias Kunz, Andrea Thomaz, and Henrik Christensen. Hierarchical rejection sampling for informed kinodynamic planning in high-dimensional spaces. In IEEE International Conference on Robotics and Automation, pages 89–96. IEEE, 2016.
- Gammell et al. [2014] Jonathan D Gammell, Siddhartha S Srinivasa, and Timothy D Barfoot. Informed RRT*: Optimal sampling-based path planning focused via direct sampling of an admissible ellipsoidal heuristic. In IEEE International Conference on Intelligent Robots and Systems, pages 2997–3004. IEEE, 2014.
- Van den Berg and Overmars [2005] Jur P Van den Berg and Mark H Overmars. Using workspace information as a guide to non-uniform sampling in probabilistic roadmap planners. International Journal of Robotics Research, 24(12):1055–1071, 2005.
- Zucker et al. [2008] Matt Zucker, James Kuffner, and J Andrew Bagnell. Adaptive workspace biasing for sampling-based planners. In IEEE International Conference on Robotics and Automation, pages 3757–3762. IEEE, 2008.
- Orthey et al. [2015] Andreas Orthey, Florent Lamiraux, and Olivier Stasse. Motion Planning and Irreducible Trajectories . In IEEE International Conference on Robotics and Automation, 2015.
- Şucan and Kavraki [2009] Ioan A Şucan and Lydia E Kavraki. Kinodynamic motion planning by interior-exterior cell exploration. In Algorithmic Foundation of Robotics VIII. Springer, 2009.
- Lee [2003] John M. Lee. Introduction to Smooth Manifolds. Springer New York, New York, NY, 2003.
- Leskovec and Faloutsos [2006] Jure Leskovec and Christos Faloutsos. Sampling from large graphs. In Proceedings of the 12th ACM SIGKDD international conference on Knowledge discovery and data mining, pages 631–636. ACM, 2006.
- Lavalle and Kuffner Jr [2000] Steven M Lavalle and James J Kuffner Jr. Rapidly-Exploring Random Trees: Progress and Prospects. In Algorithmic and Computational Robotics: New Directions, 2000.
- Hauser [2016] Kris Hauser. Robust contact generation for robot simulation with unstructured meshes. In International Journal of Robotics Research, pages 357–373. Springer, 2016.
- Şucan et al. [2012] Ioan A Şucan, Mark Moll, and Lydia Kavraki. The open motion planning library. Robotics and Automation Magazine, 2012.
- Svestka [1996] Petr Svestka. On probabilistic completeness and expected complexity for probabilistic path planning, volume 1996. Utrecht University: Information and Computing Sciences, 1996.
- Do Carmo [1976] Manfredo Perdigao Do Carmo. Differential geometry of curves and surfaces, volume 2. Prentice-hall Englewood Cliffs, 1976.
- Larsen et al. [1999] Eric Larsen, Stefan Gottschalk, Ming C Lin, and Dinesh Manocha. Fast proximity queries with swept sphere volumes. Technical report, Technical Report TR99-018, Department of Computer Science, University of North Carolina, 1999.
- Kavraki et al. [1996] Lydia E Kavraki, Petr Svestka, J-C Latombe, and Mark H Overmars. Probabilistic roadmaps for path planning in high-dimensional configuration spaces. Transactions on Robotics, 12(4):566–580, 1996.
- Kuffner and LaValle [2000] James J Kuffner and Steven M LaValle. RRT-connect: An efficient approach to single-query path planning. In IEEE International Conference on Robotics and Automation, volume 2, pages 995–1001. IEEE, 2000.
- Hsu et al. [1997] David Hsu, J-C Latombe, and Rajeev Motwani. Path planning in expansive configuration spaces. In IEEE International Conference on Robotics and Automation, volume 3, pages 2719–2726. IEEE, 1997.