A Parallel Distributed Strategy for Arraying a Scattered Robot Swarm Dominik Krupke 1 , Michael Hemmer 1 , James McLurkin 2 , Yu Zhou 2 , and S ́ andor P. Fekete 1 Abstract — We consider the problem of organizing a scattered group of n robots in two-dimensional space, with geometric maximum distance D between robots. The communication graph of the swarm is connected, but there is no central au- thority for organizing it. We want to arrange them into a sorted and equally-spaced array between the robots with lowest and highest label, while maintaining a connected communication network. In this paper, we describe a distributed method to accomplish these goals, without using central control, while also keeping time, travel distance and communication cost at a minimum. We proceed in a number of stages (leader election, initial path construction, subtree contraction, geometric straightening, and distributed sorting), none of which requires a central authority, but still accomplishes best possible parallelization. The overall arraying is performed in O ( n ) time, O ( n 2 ) individual messages, and O ( nD ) travel distance. Implementation of the sorting and navigation use communication messages of fixed size, and are a practical solution for large populations of low-cost robots. I. I NTRODUCTION AND R ELATED W ORK Consider a large company of n robots after deployment. They are scattered across a geometric region. While the swarm is still connected in terms of communication, it lacks central control; and while each of the robots carries a unique ID, none of them has information about the actual range of labels. How can we get the group into an organized arrange- ment: an equally spaced array between the positions of the robots with minimum and maximum label? (See Figure 4 for an example with 30 robots.) Not only does this demand dealing with the possibly complicated geometric arrangement in a distributed fashion; it also involves sorting them by label, which already requires Ω ( n log n ) in a centralized setting. Furthermore, what are the achievable time until completion, required communication, and distance traveled? Arranging robots in a specific order is a necessary routine in some applications on multi-robot systems. In addition to scenarios after deployment or perturbation by an uncontrol- lable event, robots may need to be ordered to go through a narrow passage, or to perform sequential procedures. For homogeneous robots, swapping tasks can solve this problem in some applications, but sorting is required if robots have different structures, are carrying different physical loads that cannot be swapped (and may need to arrive in order), or differ in some other intrinsic quantities, such as remaining battery level that cannot be transferred wirelessly [1]. 1 S ́ andor P. Fekete, Michael Hemmer, and Dominik Krupke are with the Department of Computer Science at TU Braunschweig, Braunschweig, Germany; s.fekete@tu-bs.de, mhsaar@gmail.com, d.krupke@tu-bs.de 2 James McLurkin and Yu Zhou are with the Computer Science Depart- ment at Rice University, Houston, TX, USA; jmclurkin@rice.edu 2 4 5 7 8 11121516232528313637424953545961646772747880828387 87 61 80 74 2 28 78 83 72 82 11 648 16 67 12 42 59 15 23 4 7 54 49 25 53 37 5 31 36 Fig. 4: An example of arraying a scattered swarm of robots. Thirty robots are initially randomly distributed in space, and eventually form an evenly spaced, sorted linear arrangement. In this paper, we describe an arraying algorithm to arrange robots in a sorted line. We prove that this algorithm has linear completion time and travel distance, which are both optimal. The overall protocol is robust and safe for any arbitrary initial robot configuration in Euclidean space. We make minimal assumptions on the robot’s communication and computation requirements, so our approach is suitable for simple robots with limited resources. Related Work There has been a considerable amount of work on multi- robot navigation for labeled robots; e.g., see [2]–[8], who demonstrate a number of different challenges and approaches for dealing with various aspects of the inherent difficulties. However, there is limited previous work on sorting groups of robots in a way that combines the requirements of two- dimensional geometry, distributed computing, and sorting; moreover, the absence of obstacles makes the problem easier to solve, shifting the focus to achieving optimal efficiency. The most relevant work is of Litus and Vaughan [1], which uses a double bracket flow to build a dynamical system to model the robot’s positions. Running this system will drive the positions to a sorted ordering. This is a compact, analytical solution and has provable properties, but it requires that the robots are initially placed among a line parallel to some given axis. Additionally, it requires long-range sensing and communication between robots. A previous approach to our scenario modeled the system with a discrete model, see Zhou, Li, and McLurkin [9]. This model does not include the dynamic properties of the robots: they simply jump to their destination at each time step. The authors prove convergence with matrix iteration, but also arXiv:1505.03128v1 [cs.RO] 12 May 2015 0 4 56 47 12 8 18 57 16 1 14 31 25 53 2 63 10 19 9 28 21 54 44 22 50 20 49 27 38 24 41 39 59 29 34 26 43 23 40 45 55 46 7 36 30 51 33 13 17 42 48 15 35 32 52 11 37 58 5 Fig. 1: An initial configuration of 60 robots. Edges of the graph G are indicated in light gray. The central path (Section IV-B) from r min to r max is indicated in red. 0 4 56 12 18 8 47 6 3 54 2 10 19 9 28 44 50 22 57 16 1 14 31 25 53 21 11 52 37 58 5 32 35 15 48 42 13 17 55 51 33 20 38 27 24 41 23 49 29 39 59 34 26 43 45 4640 30 7 36 Fig. 2: A snapshot of the contraction phase of swarm already depicted in Fig. 1. Several robots have already moved onto the central path depicted in red. Robot paths for contraction are depicted in blue. It can also be observed that the contraction phase is intervened with the fourth phase as the central path has already straightened significantly. Fig. 3: A snapshot of the wave sort phase. After the all robots have integrated into the central path during the contraction phase and as soon as the path is considered straight enough r min initializes sorting waves that propagate through the chain of robots. assume a robot can communicate to its final predecessor and successor. As it turns out, this method may get stuck if only local communication is available. Some components of our approach make use of methods for related subproblems. One of them is the task of straight- ening a chain of robots in the plane, based on purely local methods; this amounts to our problem for the very special case of a communication graph that is a path, and robots are already sorted by labels. In a considerable sequence of papers, Meyer auf der Heide et al. [10]–[22] studied versions of the strategy G O -T O -T HE -M IDDLE (GTM), in which each robot moves to the midpoint between its two immediate neighbors. Some of the underlying models are based on discrete rounds, with robots performing (possibly larger) discrete moves; however, Degener et al. [14] showed that in a setting with continuous motion and sensing, the variant M OVE -O N -B ISECTOR produces a straight, evenly spaced chain in time bounded by O ( n ) ; more recently, Brandes et al. [22] provided an analysis for continuous GTM and also established an upper bound of O ( n ) on the distance traveled by a robot, and thus, the overall time. Another subproblem is actually sorting the robots along the chain. Here the idea is to exploit parallelism for achiev- ing linear sorting time, thus beating the lower bound of Ω ( n log n ) for comparison-based sorting. This has been stud- ied in the context of a stationary array, with synchronized rounds: a parallel variant of bubblesort called odd-even sort [23] achieves a runtime of Θ ( n ) ; see Lakshmivarahan, Dhall, and Miller [24] for a comprehensive analysis. Note that our distributed scenario does not provide using synchro- nized rounds, but has to work in an asynchronous setting. To this end, we extend the previous work on odd-even sort to a new, asynchronous variant which we call wave sort . In addition to these explicit references, there are also several aspects which are dealt with implicitly, including local navigation, connectivity, and collision avoidance. Given the limited amount of space, we refrain from providing a survey of these related aspects. Contribution This paper presents a distributed algorithm that arranges a set of robots to a uniformaly spaced path (implemented as doubly linked list) and sorts them based on some intrinsic property. In the end, the robots with minimal and maximal label are the beginning and end of this path, with both of them staying put throughout the protocol. The objective is achieved in total time Θ ( n ) , and total travel distance Θ ( nD ) , which are both best possible assuming small robot diameter compared to the final path length. The message complexity is O ( n 2 ) after leader election. As a subroutine, we propose the distributed Θ ( n ) sorting algorithm “Wave Sort” that is based on Odd-Even-Sort, but works in an asynchronous manner. In addition, we give simulation results for an implementation with up to 130 robots, demonstrating that all components of our overall protocol are indeed linear. II. M ODEL AND A SSUMPTIONS We are given a swarm R of n robots v i , i ∈ { 1 , . . . , n } , where each robot has a unique ID number ID ( i ) , the total set of these labels is unknown. In addition we are given a total order ≺ among them. The ID space need not be known in advance; for readability of this article, we write ID ( i ) = i and v i ≺ v j iff i < j . Communication is possible whenever two robots are suf- ficiently close, i.e., they are within communication range of each other. Thus, the robots form the vertices of an undirected communication graph G = ( V , E ) with n nodes, in which two vertices v i and v j are connected by an edge in E , iff v i and v j are close enough in order to communicate directly without utilizing other robots. The diameter of the initial configuration is the maximum geometric distance D : = max { Dist u ( v ) | u , v ∈ R } . Let robot v be a direct neighbors of robot u in G , then u can measure the relative position of v . We assume that all these measurements are accurate and timely, unless otherwise noted. Furthermore, we assume that each robot can accurately move in the direction of another robot, or towards the midpoint between two visible robots. We also assume that the time to travel a specific distance d is basically linear in d , as the time to reach maximum speed is small compared to travel time. Now the overall task is to achieve a sorted, evenly spaced arrangement of robots between those with lowest and highest ID-number, i.e., robot v i must move to position p 1 +( i − 1 ) × ( p n − p 1 ) / ( n − 1 ) , for i = 1 , . . . , n , where p 1 and p n are the initial positions of robot v 1 and v n , respectively. Throughout this paper, we do not explicitly deal with message loss, as the use of a communication protocol with acknowledgements [25] makes our algorithm robust against dropped messages. The iteration number can be appended to avoid multiplication of messages due to lost acknowledge- ments. A robot will only move if it has received all necessary messages, thus if a robot starts to move before we received an acknowledgement from it, we know it has received the message. Overall, delays only slow down execution, but do not harm it. III. E CHO W AVES The echo algorithm of Chang [26] is a wave algorithm that is used multiple times in this paper. This centralized distributed algorithm allows decentralized synchronization in asynchronous settings and safe broadcasting: if it terminates, the initiator can be sure that everyone is informed. The initiator starts the algorithm by sending a message to all its neighbors. A robot that receives such a message for the first time broadcasts the message to all its neighbors except for the sender of the message, which is saved as predecessor. Only when robot has also received the message from all its neighbors, it sends the message back (echo) to its predecessor. The algorithm terminates as soon as the initiator has received the message from all its neighbors. One important aspect of this algorithm is that it spans a tree and each robot finishes before its predecessor. For equal messages delays this tree equals the minimal hop tree towards the initiator. The algorithm terminates within O ( n ) time steps and needs O ( n ) broadcast messages. IV. O UR A LGORITHM Our algorithm proceeds in a total of five phases. The first phase is the leader election phase, in which all robots identify the extremal ID numbers (Section IV-A). The second phase then establishes an initial path within G between the two extremal robots r min and r max (Section IV-B). We then straighten (Section IV-C) the central path. Integrating the remaing robots into the path is achieved by contracting subtrees (Section IV-D.) In the overall protocol (and thus in our simulations), both processes run in parallel; we do present them as two different phases for better readability As soon as all robots are on the central path and as soon as the path is straight enough (Section IV-C) we move on to the fifth and last phase, the wave sort , which is a modification of odd-even-Sort, a synchronized, parallel variant of bubble sort. It requires O ( n ) time and O ( n 2 ) messages (Section IV- E). Overall, the first four phases can be seen as building a robot array implemented as doubly linked list, while the last phase efficiently sorts the array without deforming it. A. Leader Election We determine the robots with smallest and largest ID using a simple leader election protocol as described in [27], based on the echo wave. Initially every robots claims to be the minimal/maximal robot and starts an echo wave containing its value. A robot does not propagate a wave if it already knows of a better value. Thus, only r min and r max are able to finish their waves. As soon as r max finishes its wave, r max broadcasts a message to inform all robots. As soon as r min has received this message and has finished its echo wave, it initializes another echo wave. Each robot that finishes this wave can be sure its values are final and transits to the next phase. As the last robot to finish an echo wave is the initiator, r min is the last robot that enters the next phase. The phase has a message complexity of O ( n 2 ) and needs at most O ( n ) time steps. At the end of this phase, no robot has moved, but the robots r min and r max with smallest and largest ID have been identified. B. Central Path The goal of this phase is to establish an initial central path from r min to r max within G ; see Figure 1. We could save work by choosing a path that already contains many robots; however, this amounts to solving the NP-hard problem of a maximum-length path in G , which may still not contain all robots. We sidestep these difficulties by pulling remaining robots to the initial central path, as described further down. More critical is the property of the path to be free from self-intersections, as these may lead to irresolvable collisions and blocking during straightening, even for arbitrarily small robot sizes. We prove that this can be avoided by choosing a shortest path from r min to r max in G , using the squared Euclidean distance as edge weight. Theorem IV.1 The path from the root to a leaf in the routing tree T R of a Unit-Disc-Graph using the squared Euclidean distances as edge weights is intersection free. Proof: Assume there is an intersection of the path’s edges ( a , b ) and ( c , d ) with d ( a ) < d ( b ) < d ( c ) < d ( d ) , where d refers to the distance to the root. Since ( a , b ) and ( c , d ) intersect the robots { a , b , c , d } form a convex quadrilateral. There is at least one corner of a robot x ∈ { a , b , c , d } with an angle ≥ 90°, which implies that the diagonal (either ( a , b ) or ( c , d ) ) formed by its two adjacent robots is longer than the two quadrilateral edges at x . Hence, this diagonal can not be part of the routing tree, a contradiction. Note that this proof in fact only requires edge weights that reflect the order induced by their Euclidean length. It is not difficult to see that the path remains crossing free throughout the rest of the algorithm. In order to compute the path we first compute a routing tree T R rooted at r min using the Chandy-Misra-Algorithm [28] that can be implemented with O ( n ) time and O ( n · e ) individual messages for a graph with e edges, making use of a synchronizer [29]. Based on broadcast messages (and assuming constant effort for each), the total message complexity is O ( n 2 ) . After T R 1 4 3 2 7 5 6 Fig. 5: Straightening using the continuous G O -T O -T HE -M IDDLE (GTM) Method. Not only does it straighten the path, it also makes it evenly spaced, as can be seen by r 3 . In a continuous process the path gets straight. is established, r max sends a message to r min on T R . Each robot that receives this message forwards it to its parent in T R and becomes part of the initial path. As soon as the message reaches r min , it starts an echo wave on G , telling the remaining robots that they are not on the path. Robots which have finished that wave go over to the next phase. As before, r min is the last robot that enters the next phase. At the end of this phase, all robots know if they are on the initial path and if so its predecessor and successor, that is, the robots on the path emulate a doubly linked list. C. Straightening a Path All robots that are on the central path straighten the path by following the continuous GTM method, for which it is known that the chain of robots converges to a straight line (up to inaccuracy of measurements) [10]–[22]. The rule is simple: every robot moves towards the midpoint of the segment between its two neighbors n l and n r in the doubly linked list; see Figure 5. In addition, robots on the path are not allowed to cross other path edges in order to ensure that the path remains intersection free. As mentioned before, this phase only described on its own for clearer exposition; in the overall algorithm, it runs parallel to contraction (Section IV-D), as well as sorting (Section IV-D). During contraction, the process evens out distances among consecutive pairs of roots, making space for new incoming robots that are integrated into the path. During sorting, this process ensures that robots continue to have sufficient space. D. Contracting Subtrees This phase integrates remaining robots into the central path; see Figure 6. The idea is that robots that are close to the central path move towards the midpoint of two consecutive robots and get integrated into the path as soon as they have reached that position. At the same time, these robots are the roots of contracting subtrees that organize robots that are further away; see Figure 2. The continued straightening (Section IV-C) ensures that there is sufficient space between consecutive robots. At the end of this phase, there is a doubly linked list that contains all robots with r min and r max at its ends. a) Contraction Tree: The contraction tree T C is built by inducing another routing tree rooted at r min . However, edges on the central path get weight zero, while all other 1 4 3 2 7 5 6 Fig. 6: Example for contraction. Extremal robots are shown in black, central path robots in grey with thick edges, and contraction tree in doted blue. Robot r 6 is not adjacent to the central path and thus moves towards its predecessor. Robot r 5 is adjacent to the path and moves to the closest midpoint of a central path edge to get integrated. edges in G get their Euclidean length. Thus, we obtain several routing trees that are attached to the central path. b) Contraction: The following protocol ensures that robots that are further away move first, so parents do not lose connectivity to their children, assuming star-shaped commu- nication ranges. In order to start a motion, r min induces an echo wave on T C . However, only robots that have finished this wave are allowed to move. By delaying the finalization of the wave, a child can keep its parent static until it is ready to move. In general, children move towards their parent, while child robots attached to the central path move towards the midpoint of the closest path edge. Contractive motion can be parallelized with straightening the path. c) Integration: Each path edge is owned by the incident robot closer to r min . If an exterior robot r ext , i.e., a robot that is not yet integrated into the central path yet, is close enough to the midpoint of an edge, the owner r own of the edge can send an offer -message containing the ID of itself and the ID of its successor r suc on the central path. Usually, r ext acknowledges this with an accept -message to r own and r suc , in which case r ext is integrated into the central path between r own and r suc . However, in rare cases r ext may already have received another offer, in which case r ext replies with a reject - message. d) Termination: The contraction phase terminates as soon as all robots have been integrated into the central path, which is checked as follows. As soon as r min has no child, it sends an echo wave. However, the wave is restricted to the central path and only robots without any children are allowed to forward the wave. Therefore, all robots are integrated as soon as r max sends the echo. In addition, the echo is used to check that the path is straight enough, i.e., the echo is only sent via path edges that are monotone with respect to the direction from r max to r min . This is stable even in the presence of accumulated measurement errors and ensures that robots have sufficient space to move during the next phase. E. Wave Sort As soon as the robots are arrayed on a sufficiently straight line, we enter the actual sorting phase. The idea is to use a variant of odd-even sort [23], [24], a parallel version of bubble sort in which alternately robots of odd and even pairs compare their labels and swap their positions if necessary. With global control, odd-even sort takes O ( n ) time by carrying out at most n − 1 parallel rounds, each in time O ( 1 ) . However, in our distributed setting with no global control, implementing global synchronization for each odd (even) round would take O ( n ) time, increasing the overall complexity to O ( n 2 ) . Instead, our new Wave Sort implements each odd (even) round as a wave that is initialized at r min . If an odd (even) wave reaches and odd (even) pair, they first propagate the signal and then start to swap if necessary. Thus, the frequency of waves is essentially bounded by the time required to swap two consecutive robots which is O ( 1 ) . For large n , one can literally see several waves that propagate through the chain of robots—see Figure 3. Overall, the algorithm requires O ( n ) time, because the frequency of waves is constant. In particular, we require at most n − 3 waves. Robots r min and r max are already correctly placed. Con- sequently, they will not require swaps; r min initializes waves (Algorithm 1), while r max absorbs waves (Algorithm 3). Both algorithms are stated for completeness. In the following we present Algorithm 2 for all other robots. Algorithm 1 Wave Sort: Min-Robot 1: m ← ‘Master’ 2: while not sorted do 3: Wait for READY [] from n r 4: Send INIT [ m , ID ] to n r 5: Wait for RET [ r ] 6: n r ← min { n r , r } 7: m ← m 8: end while 9: Sorted! 1) Algorithm 2: The message exchange ensures that all robots know their future left and right neighbors, so that they can update the pointers of the doubly linked list before starting the actual swap (if necessary). In general, all incom- ing messages are stored in a buffer; i.e., if a robot WAITS for a message, it checks this buffer until it contains the message (which may already be the case). On success the message is taken and removed from the buffer. Consider the bottom of Figure 7 depicting a master-slave pair and its two neighboring pairs. The robots of these pairs may also swap. In the left pair, the robot that is going to end up at Position 1 must know min ( r c , r d ) , which is going to be its right neighbor. Similarly, the right pair must know max ( r c , r d ) . At the same time the robot ending up at Position 2 must know max ( r a , r b ) and the robot that will be at Position 3 must know min ( r e , r f ) . After this information is exchanged the doubly linked list can be updated and (if necessary) the robots also change their physical positions (Algorithm 2:Line 11 and Line 22). 2) Example: A detailed example is given in Figure 7. In the top row, robot r 2 and r 3 are already paired. The message exchange of robot r 7 in detail is as follows. Robot r 7 starts its loop by sending a READY -message (A2:L2) to its Algorithm 2 Wave Sort: Non-extremal-Robots 1: while not sorted do 2: Wait for n l in range; Send READY [] to n l 3: Wait for INIT [ m , l ] from n l 4: if m = ‘Master’ then 5: Send RET [ min { ID , n r } ] to n l 6: Wait for READY [] from n r 7: Send INIT [ m , l ] to n r 8: Wait for RET [ r ] from n r 9: if n r < ID then 10: n l ← n r ; n r ← r 11: Swap with n r , sidestep right 12: else 13: n l ← l 14: end if 15: else 16: Wait for READY [] from n r 17: Send INIT [ m , max { ID , n l } ] to n r 18: Wait for RET [ r ] from n r 19: Send RET [ r ] to n l 20: if n l > ID then 21: n r ← n l ; n l ← l 22: Swap with n l , sidestep right 23: else 24: n r ← r 25: end if 26: end if 27: end while Algorithm 3 Wave Sort: Max-Robot 1: while not sorted do 2: Wait for n l in range; Send READY [] to n l 3: Wait for INIT [ m , l ] from n l 4: Send RET [ ID ] to n l 5: n l ← max { n l , l } 6: end while left neighbor r 3 . It then waits for a INIT -message (A2:L3) from r 3 , which turns r 7 into a master for this round and also indicates that the left pair will end the round with r 3 as the robot at Position 1. r 7 then answers with a RET - message (A2:L5) indicating the future right neighbor for r 3 , namely r 6 . r 7 then waits for a READY -message (A2:L6) from r 6 and turns it into a slave by an INIT -message (A2:L7), which also contains the future left neighbor of this pair, namely r 3 . It then waits for r 6 to finish its handshake with the right pair and finally receives a RET -message (A2:L8), which contains the future right neighbor for r 7 , which is r 4 . As master and slave now know their future neighbors, they update their pointers (A2:L10 and L21) and start the actual swap. The important part of this protocol is that the master of the next pair always immediately answers with a RET -message (A2:L8), as soon as it has received its INIT -message (A2:L3). This RET -message already contains the future right neighbor of the current pair. This information is sufficient for the 2 3 7 6 4 5 2 3 7 6 4 5 M,3 2 3 7 6 4 5 6 2 3 7 6 4 5 6 S,3 2 3 7 6 4 5 M,7 2 3 7 6 4 5 S,7 2 3 7 6 4 5 4 4 2 3 7 6 4 5 2 3 7 6 4 5 9 a c d e f Left Pair Right Pair Master Slave INIT[`Master',max{a,b}] RET[min{e,f}] MIN MAX Position 1 2 3 4 Fig. 7: Bottom: Sketch of a master-slave pair with its two neighbors. Top: A concrete example of a wave. Robots of central pair ( r 7 , r 6 ) swap, while left and right pair are not required to swap. Dotted robots are still in the previous wave. Gray robots are in the current wave. Red robots swap. Dotted pointers are already updated. Messages: READY —orange; INIT —blue; RET —green; current pair to update its pointers and to start the swap while the wave continues to propagate to the right. V. S IMULATION We validated our approach by conducting simulations with robot swarms of various size. As we consider continuous sensing and motion, we assume that sensing and motion errors even out. Robots are simulated as disks, i.e., they may collide. The used parameters are inspired by those of the actual r-one robots of Rice University [30]: robot radius is 0 . 05 m , communication range is 4 . 5 m , maximal velocity is 1 m / s and maximal acceleration is 1.8 m / s 2 . A robot can perform around 1 . 6 360° rotations per second, which are necessary to change the direction, as the robots can only drive for- and backwards. Robots are simulated at 60 hz and messages are received within the next time step, i.e., after 1 / 60 s . The experiments where made for n=15,...,130 robots. They were randomly placed into a quadliteral of length 0.4*n and height 12. The minimal robot was placed at the lower left corner and the maximal at the lower right corner; see Fig- ures 1-3 for an overall illustration. For collision avoidance, Time [s] | R | Sorted Straightened Contracted 0 50 100 150 200 250 300 20 40 60 80 100 120 Fig. 8: Simulation runs for | R | = 15 , . . . , 130 with 64 runs each; time includes deadlock prevention during collision-avoiding motion control. Clearly, all program components have linear runtime. we used a heuristic “retreat from neighbors closer to their goal”. Clearly, the running time is linear. It is also evident that the time for straightening the chain (the subject of numerous papers dealing with GTM) is almost negligible, i.e., O ( n ) with a small constant. VI. C ONCLUSION We presented a distributed algorithm to sort robots in Euclidean space, in overall time that is linear time after leader election. Robots get sorted from arbitrary initial configura- tion, even if sensor range is limited and there is no central control. Our underlying assumption is that configurations are dense enough for a connected communication graph, but not too dense for feasible arrangements (i.e., available space along the final path is sufficient for accomodating all robots) or for local collision avoidance. There are many exciting new challenges that lie ahead. The next step is to combine our approach with dense settings in which density along the terminal path is a problem, and multi-robot collision avoidance comes into play. We plan to resolve these by moving global minimum and maximum apart to make the problem feasible. As this generalizes the subproblem of straightening a chain of robots by a local strategy like continuous G O -T O -T HE -M IDDLE or M OVE - O N -B ISECTOR , the mathematical analysis becomes more in- volved, even if the overall strategy displays benign behavior toward each other to make problem solvable. R EFERENCES [1] Y. Litus and R. Vaughan, “Fall in! sorting a group of robots with a continuous controller,” in Computer and Robot Vision (CRV), 2010 Canadian Conference on , May 2010, pp. 269–276. [2] P. Svestka and M. H. Overmars, “Coordinated path planning for multiple robots,” Robotics and Autonomous Systems , vol. 23, no. 3, pp. 125–152, 1998. [3] G. S ́ anchez-Ante and J. Latombe, “Using a PRM planner to compare centralized and decoupled planning for multi-robot systems,” in Pro- ceedings of the 2002 IEEE International Conference on Robotics and Automation, ICRA 2002, May 11-15, 2002, Washington, DC, USA , 2002, pp. 2112–2119. [4] J. P. van den Berg and M. H. Overmars, “Prioritized motion planning for multiple robots,” in 2005 IEEE/RSJ International Conference on Intelligent Robots and Systems, Edmonton, Alberta, Canada, August 2-6, 2005 , 2005, pp. 430–435. [5] G. Wagner and H. Choset, “M*: A complete multirobot path planning algorithm with performance bounds,” in 2011 IEEE/RSJ International Conference on Intelligent Robots and Systems, IROS 2011, San Fran- cisco, CA, USA, September 25-30, 2011 , 2011, pp. 3260–3267. [6] G. Wagner, M. Kang, and H. Choset, “Probabilistic path planning for multiple robots with subdimensional expansion,” in IEEE International Conference on Robotics and Automation, ICRA 2012, 14-18 May, 2012, St. Paul, Minnesota, USA , 2012, pp. 2886–2892. [7] K. Solovey, O. Salzman, and D. Halperin, “Finding a needle in an ex- ponential haystack: Discrete RRT for exploration of implicit roadmaps in multi-robot motion planning,” in Workshop on the Algorithmic Foundations of Robotics (WAFR 2014), to appear , 2015. [8] G. Wagner and H. Choset, “Subdimensional expansion for multirobot path planning,” Artif. Intell. , vol. 219, pp. 1–24, 2015. [9] Y. Zhou, H. Li, and J. McLurkin, “Physical bubblesort,” 2014, poster presented at International Symposium on Distributed Autonomous Robotic Systems (DARS), November 2–5, Daejeon Convention Center, Daejeon, Korea. [10] M. Dynia, J. Kutylowski, P. Lorek, and F. Meyer auf der Heide, “Maintaining communication between an explorer and a base station,” in Biologically Inspired Cooperative Computing, IFIP 19th World Computer Congress, TC 10: 1st IFIP International Conference on Biologically Inspired Computing, August 21-24, 2006, Santiago, Chile , 2006, pp. 137–146. [11] M. Dynia, J. Kutylowski, F. Meyer auf der Heide, and J. Schrieb, “Local strategies for maintaining a chain of relay stations between an explorer and a base station,” in SPAA 2007: Proceedings of the 19th Annual ACM Symposium on Parallelism in Algorithms and Architectures, San Diego, California, USA, June 9-11, 2007 , 2007, pp. 260–269. [12] F. Meyer auf der Heide and B. Schneider, “Local strategies for con- necting stations by small robotic networks,” in Biologically-Inspired Collaborative Computing - IFIP 20th World Computer Congress, Second IFIP TC 10 International Conference on Biologically-Inspired Collaborative Computing, September 8-9, 2008, Milano, Italy , 2008, pp. 95–104. [13] J. Kutylowski and F. Meyer auf der Heide, “Optimal strategies for maintaining a chain of relays between an explorer and a base camp,” Theor. Comput. Sci. , vol. 410, no. 36, pp. 3391–3405, 2009. [14] B. Degener, B. Kempkes, P. Kling, and F. Meyer auf der Heide, “A continuous, local strategy for constructing a short chain of mobile robots,” in Structural Information and Communication Complexity, 17th International Colloquium, SIROCCO 2010, Sirince, Turkey, June 7-11, 2010. Proceedings , 2010, pp. 168–182. [15] B. Degener, B. Kempkes, and F. Meyer auf der Heide, “Building simple formations in large societies of tiny mobile robots,” Procedia CS , vol. 7, pp. 153–155, 2011. [16] B. Degener, B. Kempkes, T. Langner, F. Meyer auf der Heide, P. Pietrzyk, and R. Wattenhofer, “A tight runtime bound for syn- chronous gathering of autonomous robots with limited visibility,” in SPAA 2011: Proceedings of the 23rd Annual ACM Symposium on Parallelism in Algorithms and Architectures, San Jose, CA, USA, June 4-6, 2011 (Co-located with FCRC 2011) , 2011, pp. 139–148. [17] P. Brandes, B. Degener, B. Kempkes, and F. Meyer auf der Heide, “Energy-efficient strategies for building short chains of mobile robots locally,” in Structural Information and Communication Complexity - 18th International Colloquium, SIROCCO 2011, Gdansk, Poland, June 26-29, 2011. Proceedings , 2011, pp. 138–149. [18] A. Cord-Landwehr, B. Degener, M. Fischer, M. H ̈ ullmann, B. Kemp- kes, A. Klaas, P. Kling, S. Kurras, M. M ̈ artens, F. Meyer auf der Heide, C. Raupach, K. Swierkot, D. Warner, C. Weddemann, and D. Wonisch, “A new approach for analyzing convergence algorithms for mobile robots,” in Automata, Languages and Programming - 38th International Colloquium, ICALP 2011, Zurich, Switzerland, July 4-8, 2011, Proceedings, Part II , 2011, pp. 650–661. [19] B. Kempkes and F. Meyer auf der Heide, “Local, self-organizing strategies for robotic formation problems,” in Algorithms for Sensor Systems - 7th International Symposium on Algorithms for Sensor Systems, Wireless Ad Hoc Networks and Autonomous Mobile Entities, ALGOSENSORS 2011, Saarbr ̈ ucken, Germany, September 8-9, 2011, Revised Selected Papers , 2011, pp. 4–12. [20] ——, “Continuous local strategies for robotic formation problems,” in Experimental Algorithms - 11th International Symposium, SEA 2012, Bordeaux, France, June 7-9, 2012. Proceedings , 2012, pp. 9–17. [21] B. Kempkes, P. Kling, and F. Meyer auf der Heide, “Optimal and competitive runtime bounds for continuous, local gathering of mobile robots,” in 24th ACM Symposium on Parallelism in Algorithms and Architectures, SPAA ’12, Pittsburgh, PA, USA, June 25-27, 2012 , 2012, pp. 18–26. [22] P. Brandes, B. Degener, B. Kempkes, and F. Meyer auf der Heide, “Energy-efficient strategies for building short chains of mobile robots locally,” Theor. Comput. Sci. , vol. 509, pp. 97–112, 2013. [23] A. N. Habermann, “Parallel neighbor-sort (or the glory of the induction principle),” CMU Computer Science Report (available as Technical report AD-759 248, National Technical Information Service, US De- partment of Commerce, 5285 Port Royal Rd Sprigfield VA 22151) , 1972. [24] S. Lakshmivarahan, S. K. Dhall, and L. L. Miller, “Parallel sorting algorithms,” Advances in Computers , vol. 23, pp. 295–354, 1984. [25] A. Leon-Garcia and I. Widjaja, Communication Networks , 2nd ed. New York, NY, USA: McGraw-Hill, Inc., 2004. [26] E. J. Chang, “Echo algorithms: Depth parallel operations on general graphs,” IEEE Trans. Software Eng. , vol. 8, no. 4, pp. 391–401, 1982. [27] W. Fokkink, Distributed Algorithms: An Intuitive Approach . MIT Press, 2013. [28] K. M. Chandy and J. Misra, “Distributed computation on graphs: Shortest path algorithms,” 1982. [29] K. B. Lakshmanan, K. Thulasiraman, and M. A. Comeau, “An efficient distributed protocol for finding shortest paths in networks with negative weights,” IEEE Trans. Softw. Eng. , vol. 15, no. 5, pp. 639–644, May 1989. [Online]. Available: http://dx.doi.org/10.1109/32.24713 [30] J. McLurkin, A. J. Lynch, S. Rixner, T. W. Barr, A. Chou, K. Foster, and S. Bilstein, “A low-cost multi-robot system for research, teaching, and outreach,” in Distributed Autonomous Robotic Systems - The 10th International Symposium, DARS 2010, Lausanne, Switzerland, November 1-3, 2010 , 2010, pp. 597–609.