Search and Rescue
Search and rescue is the canonical swarm use case, and it earns the title honestly. The search area is large. Time is the binding constraint, and survival probability falls steeply with it. Individual operators have limited range. And communication is reliably degraded — collapsed structures attenuate radio, avalanche snow more so, and underwater it barely functions at all.
The task itself is simple to state: cover as much area as fast as possible, and reliably report whatever is found. Both halves are hard, and the second one is harder, because reporting requires the network that the disaster destroyed.
Why swarms fit
Coverage scales with parallelism. A hundred drones with modest sensors cover ground faster than one platform with a superb sensor, because coverage is an area problem and one platform can only be in one place.
Failure tolerance is structural. Robots will be lost — to debris, to water, to battery exhaustion at the wrong moment. A swarm mission survives the loss of its members in a way that a single-platform mission does not.
No central planner is required. Local rules plus gossip converge on usable global coverage patterns. This is not merely elegant; it is necessary, because the radio infrastructure a central planner would need is precisely what the disaster removed.
Coordination approaches
Stigmergic coverage. Agents mark searched regions in a shared, decaying field, so the swarm avoids re-searching cleared ground without any agent tracking what the others have done. This is the ant colony mechanism applied to area coverage, with revisit decay tuned so that a region searched long ago becomes eligible again — a survivor may have moved, or the first pass may have missed them. Our treatment is in Density-Modulated Boids and Stigmergic Coverage, whose mechanism is implemented but whose result tables are illustrative rather than measured.
Delay-tolerant intent propagation. When the swarm partitions — and it will, when a building settles or a drone rounds a corner — the fragments must continue searching, and must reconcile what they learned when contact resumes. Representing mission intent and search state as a conflict-free replicated data type gives convergence on reconciliation without a central authority, which is the design described in ICCD.
Evaluation. The coverage scenario in the Arboria Swarm Benchmark
is the research stand-in for this task.
Open research questions
Localization priors. Given a building footprint or a terrain elevation model, how should the swarm bias its search? A stigmergic heuristic accepts any scalar field as a weight; the open question is what field actually predicts where survivors are, and the answer is presumably domain-specific and under-studied.
Heterogeneous teams. Mixed rotary-wing, ground, and tethered platforms have complementary access and endurance. Allocating roles among them without a planner is a market problem.
Communication resilience. Rubble-penetrating radio is short-range, lossy, and expensive in energy per bit. Training policies that degrade gracefully requires a simulator in which communication actually costs something — see Leviathan’s channel model, where per-bit transmit energy grows with the square of distance.
Human-in-the-loop. A rescue commander must inject priorities mid-mission. Extending a replicated intent structure to accept human overrides without breaking its convergence guarantees is genuinely open: an override is, by construction, a non-commutative operation.
The delay boundary. In a collapsed structure, an agent’s picture of its peers is stale by an amount that depends on the rubble. Our measurement is that coordination does not degrade gradually with that staleness — it collapses through a boundary, and it does so identically whichever coordination algorithm is used. Knowing where that boundary sits for a given radio and a given search timescale is a design input nobody currently computes.
Adjacent work
Multi-robot coverage under line-of-sight constraints traces to Kumar, Matarić, and collaborators. Frontier-based exploration of unknown environments comes from Yamauchi and was extended by Burgard and colleagues to the multi-robot case. Field deployments at test ranges are documented in the search-and-rescue robotics literature, notably by Murphy.
Ethics
The sensors that find a survivor find anyone. Operator authorization, privacy of the sensed environment, and proportionality of surveillance-adjacent sensing are not afterthoughts, and mission boundaries should be explicit and auditable rather than assumed from good intent. See the ethical implications of autonomous swarms and our principles.
Related
Disaster management and relief operations covers the wide-area setting. Swarm robotics for exploration and surveillance covers the sensing and coverage problem outside a crisis. Communication in harsh environments sets out the constraint that shapes all of it.