Pith. sign in

REVIEW 4 major objections 6 minor 29 references

NavEX: A Multi-Agent Coverage in Non-Convex and Uneven Environments via Exemplar-Clustering

T0 review · 4 major / 6 minor · reviewed 2026-08-16 · deepseek-v4-flash

Pith's one-line read NavEX reframes multi-agent coverage in cluttered and rugged spaces as submodular maximization, giving greedy placement a (1−1/e) optimality guarantee for a single authority and a 1/2 guarantee for multiple authorities.

desk verdict The central utility equation is indexed incorrectly, making the objective independent of the chosen deployment set, so the paper's main claim falls apart as written. read the letter →

arxiv 2504.21113 v1 pith:CBDAEFHY submitted 2025-04-29 cs.MA cs.RO

classification cs.MAcs.RO
keywords multi-agentdeploymentcoveragecontrolsubmodularmaximizationexemplarclusteringvisibilitygraphRRT*traversabilityanalysisnon-convexenvironments
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

NavEX is a framework for choosing where to place K agents among prespecified candidate sites when the workspace is non-convex or the terrain is uneven enough to restrict travel. Its central idea is to write coverage as an exemplar-clustering loss—the reduction in the summed distance from targets to their nearest chosen site—so that the placement problem becomes a monotone submodular maximization. Because that utility stays submodular for any nonnegative distance measure, NavEX can use obstacle-aware or traversability-aware distances without asking them to satisfy the triangle inequality. With this construction the sequential greedy algorithm carries a (1−1/e) optimality gap for the single-authority problem and a 1/2 gap for the multi-authority version, and the same code path covers both fair-access deployment and hotspot deployment (using a capped logarithmic distance for the latter). The simulations show deployment choices that visibly shift to respect obstacles and traversability, where Euclidean or geodesic distances would place agents in wasteful or unreachable positions.

What carries the argument

The load-bearing object is the exemplar-clustering utility $f(R)=L(\{d_0\})-L(R\cup\{d_0\})$, where $L(S)$ is the average distance from the points being served to their nearest chosen representative and $d_0$ is a phantom placement. The key fact that carries the argument is that this utility is monotone and submodular for any nonnegative distance function, which is what lets NavEX drop the metric axioms. The distance oracle does the environmental work: a visibility graph supplies exact shortest paths around polygonal obstacles in 2D (roadmap efficiency 1), while traversability-aware RRT* builds a map from slope, flatness, and step-height thresholds and accepts tree edges only within navigable regions, producing finite-sample shortest-path estimates in rugged terrain. For hotspot deployment the distance is passed through a capped logarithmic map, preserving concavity and hence submodularity. The greedy Algorithms 1 and 2 consume this oracle and are what turn the submodularity into the $(1-1/e)$ and $1/2$ performance certificates.

What would settle it

Run NavEX with a visibility graph on a small polygonal workspace where the optimal deployment can be found by exhaustive search, and verify that the greedy utility reaches at least $(1-1/e)$ of the optimum; then repeat on a small rugged terrain, computing true traversal costs on a fine grid and comparing them with traversability-aware RRT* estimates for a fixed low sample budget—if greedy on the estimates yields a deployment whose true-cost utility falls below $(1-1/e)$ of the true optimum, the practical guarantee for uneven terrain fails.

Watch

Extended reading notes

Core claim

The paper claims that multi-agent dispatch coverage in non-convex and uneven environments is an instance of submodular maximization, provided the utility function is built from exemplar clustering rather than from direct geometric coverage integrals. Define the loss $L(S)$ as the average, over target points, of the distance to the nearest selected deployment point, and let $f(R)=L(\{d_0\})-L(R\cup\{d_0\})$ with $d_0$ a phantom site; maximizing $f$ is equivalent to minimizing $L$. This $f$ is monotone and submodular for any nonnegative—even non-symmetric, triangle-inequality-violating—distance, so the NP-hard placement problem can be attacked by Algorithm 1 or 2 in polynomial time with worst-case ratios $(1-1/e)$ and $1/2$. NavEX then instantiates the distance oracle as exact visibility-graph shortest paths in planar obstacle fields and as traversability-aware RRT* in rugged terrain, with a truncated logarithmic transform for hotspot deployment. The paper's claim is that this single framework preserves the classical submodular guarantees while accommodating realistic, non-Euclidean movement costs.

Load-bearing premise

The load-bearing premise is that the distance values fed into the greedy algorithm faithfully represent true navigation costs—exact for visibility graphs, but only asymptotically exact for traversability-aware RRT*, whose finite-sample estimates are what the performance certificate actually applies to.

Editorial extensions

If this is right

  • A single authority with any prespecified set of candidate sites can, in polynomial time, obtain a deployment whose exemplar-clustering utility is at least $(1-1/e)$ of the optimum, regardless of obstacles or terrain, as long as all pairwise distances are nonnegative.
  • In planar polygonal environments the visibility-graph oracle is exact, so the certificate applies to true navigational cost; in rugged terrain the same guarantee applies to the sampled RRT*-based distances.
  • The identical utility structure serves both fairness (equitable access) and hotspot (demand-weighted) objectives, with only the distance transform differing, so the two tasks share a single solver.
  • When multiple authorities independently control disjoint candidate regions, greedy selection still yields a $1/2$ optimality gap, giving a principled way to divide deployment responsibility without centralized computation.
  • The independence of per-pair RRT* trees means distance computation can be parallelized, which moderates the per-tree cost of the terrain oracle at scale.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The submodularity property is so permissive that any nonnegative learned cost oracle—for instance, a neural traversability cost map—could be dropped into NavEX and inherit the same greedy guarantees; the paper demonstrates this only for visibility graphs and RRT*.
  • Because the utility measures reduction in summed distance, NavEX is effectively a submodular surrogate for the k-median objective; comparing greedy placements against local-search k-median on identical maps would quantify how much is gained or lost by the submodular route.
  • A natural stress test is to coarsen or refine the prespecified candidate set: since the paper fixes the candidate locations in advance, deployment quality is bounded above by how well that discrete set samples the traversable region, and an adaptive candidate-generation scheme could close that gap.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 6 minor

Summary. The paper proposes NavEX, a framework for multi-agent deployment on discrete candidate sets in non-convex and uneven environments. NavEX combines an exemplar-clustering-based utility with obstacle-aware distances from visibility graphs and traversability-aware RRT* paths, and casts single-authority and multi-authority deployment as monotone submodular maximization under cardinality or partition-matroid constraints, claiming (1 - 1/e) and 1/2 greedy optimality gaps, respectively. The manuscript presents qualitative simulation examples in 2D obstacle fields and 3D hilly terrains.

Significance. If the definitional issues are corrected, the framework is a useful synthesis: it correctly identifies the facility-location form of exemplar clustering, recognizes that submodularity can be preserved for non-Euclidean and non-metric distance measures, and provides a unified treatment of single- and multi-authority constraints. The authors also state that code is available, which supports reproducibility. However, as submitted, the central utility definition makes the objective independent of the chosen deployment set, and the stated fair-access objective is not represented by the proposed utility. These issues must be resolved before the theoretical claims can be assessed.

major comments (4)
  1. [Section III-B, Eq. (4)] The loss is written as L(S) = (1/|S|) * sum_{p in X} min_{d in T} dist(p,d), so the selected set S appears only in the normalization 1/|S|. As a result, L(S) is identical for all subsets of the same cardinality, f(R) in Eq. (5) depends on R only through |R|, and the greedy argmax in Algorithm 1 is indifferent among all candidates. The claimed monotone submodularity and the (1 - 1/e) and 1/2 optimality gaps are therefore vacuous as stated. Please replace the loss with the standard exemplar-clustering form, e.g., L(S) = (1/|T|) * sum_{d in T} min_{p in S} dist(p,d) (or an equivalent sum over targets), and re-derive Eqs. (4)-(5) and the submodularity argument under that definition.
  2. [Sections I and III-B] The fair-access deployment problem is stated as minimizing the maximum distance between any target and its nearest agent (a min-max objective), but the utility in Eq. (4) minimizes an average distance (a k-median-type objective). These objectives differ materially; a deployment minimizing average distance can leave some targets arbitrarily far. The manuscript should either adopt the average-distance objective consistently throughout or propose a submodular surrogate with an explicit formal connection to the min-max goal.
  3. [Section III-A and Section IV] For uneven terrains, distances are computed by traversability-aware RRT*, which is asymptotically optimal but not exact for finite samples. The stated greedy guarantee applies to the utility function evaluated on the realized approximate distance matrix, not necessarily to the true navigational coverage objective. Please state this limitation explicitly and provide either a convergence analysis or an empirical sensitivity study showing how the reported deployments change across random RRT* runs.
  4. [Section IV] The demonstrative examples contain no quantitative performance metrics, baselines, or statistical repetitions; claims of effectiveness are supported only by qualitative figures. Please report at least the achieved utility values relative to an upper bound or a baseline, and include variance across randomized target and RRT* realizations.
minor comments (6)
  1. [Section III-B] The text refers to 'S subset P' while the sum in Eq. (4) runs over p in X; the sets P and X are not defined consistently, and this notation should be unified.
  2. [Section III-B, Eq. (6)] The symbol L is reused for the truncation cap in Eq. (6) and for the loss function L(S) in Eq. (4); please rename one of them to avoid confusion.
  3. [Algorithm 2] The constraint is written as |S ∩ X_i| <= kappa_i in the output line, but the surrounding text and problem statement use inconsistent notation for the subset relation; please make the notation uniform.
  4. [Section III-A] The stated Dijkstra complexity O(E + V log V) is the Fibonacci-heap form; with a binary heap it should be O((E + V) log V). Please specify the implementation or correct the expression.
  5. [Algorithm 1] The input line says 'number of choices k' while the output and Eq. (1) use K; please align k and K.
  6. [References] Reference [1] contains an extra comma in the author list ('S. S. Kia, , and S. Martinez'), and the phrase 'roadmap efficiency of 1' in Section III-A should be defined or replaced by a direct statement that visibility graphs yield exact shortest paths.

Circularity Check

1 steps flagged · score 8.0 of 10

Eq. (4)-(5) define the utility independently of the selected set; the greedy/submodular claims are vacuous by construction.

  1. self definitional [Section III-B, Eqs. (4)-(5)]
    "L(S) = 1/|S| \sum_{p∈X} min_{d∈T} dist(p,d), (4) ... f(R) = L({d0})−L(R∪{d0}), (5)"

    By Eq. (4), the inner minimization is over d∈T (targets), not over the selected exemplars S; therefore L(S) depends on S only through the prefactor 1/|S|, i.e. L(S)=C/|S| with C=\sum_{p∈X}min_{d∈T}dist(p,d). Substituting into Eq. (5) gives f(R)=C−C/(|R|+1), a function of the cardinality of R alone. Consequently every feasible set of a given size has identical utility, Algorithm 1's argmax is indifferent among all candidate deployment points, and the claimed (1−1/e) or 1/2 optimality gap is a guarantee about a constant objective. The coverage utility is thus independent of the decision variables by construction, so the central submodular-maximization claim is vacuous as written.

full rationale

The only load-bearing reduction I can exhibit is Eqs. (4)-(5), where the selected set disappears from the objective; this is a definitional self-removal of the decision variable, so it is counted as self_definitional. No fitted parameters are renamed as predictions; Mτ uses external thresholds and RRT* is asymptotically optimal from standard references. The citation [16] is an author's own survey, but the greedy optimality theorem it summarizes is a standard, externally verifiable result (also available in [15], [17]-[20], [29]), so it is not load-bearing self-citation. The paper's fair-access/hotspot discussion conflates min-max with average-distance minimization, and RRT* distances are finite-sample approximations, but these are correctness/soundness concerns, not circularity. Thus the circularity score is driven by the Eq. (4) index error, which makes the central claim vacuous by definition.

Assumptions & free parameters 2 free parameters · 5 assumptions · 1 invented entities

The central framework rests on standard submodular optimization theorems and on the assumption that graph-based or sampling-based path costs can stand in for true navigational distances. The written loss in Eq. (4) is a further, unresolved definitional issue that affects the entire derivation.

free parameters (2)
  • hotspot truncation threshold ℓ and cap L
    Parameters of Eq. (6), chosen by hand; no sensitivity analysis or selection procedure is reported, and they directly shape hotspot deployments.
  • traversability weights ω1, ω2, ω3 and critical thresholds s_crit, f_crit, ζ_crit
    Vehicle- and terrain-specific values in Eq. (3), carried over from [28] and chosen by the user; they are not fit to data but are required to instantiate the traversability map.
assumptions (5)
  • standard math Sequential greedy maximization of a monotone submodular function under a cardinality constraint achieves a (1 - 1/e) approximation; under a partition matroid it achieves 1/2.
    Invoked in Section III for Algorithms 1 and 2; standard theorem taken from [16].
  • standard math The exemplar-clustering utility in Eq. (5) is monotone and submodular when derived from the loss in Eq. (4), even for distances violating symmetry or the triangle inequality.
    Attributed to Gomes and Krause [29], not proven in the paper; this is the load-bearing mathematical fact for the framework.
  • standard math Visibility graphs give exact shortest paths in planar environments with polygonal obstacles.
    Used in Section III-A as the distance metric; known result from computational geometry [23], [25].
  • domain assumption Traversability-aware RRT* is probabilistically complete and asymptotically optimal.
    Used in Section III-A to justify distance estimates in uneven terrain; relies on [24], [27] and the traversability map construction of [28].
  • domain assumption The topological map and traversability map of W are given from prior surveys and are accurate enough for planning.
    Problem setting in Section II takes maps as input; no uncertainty or error analysis is provided.
invented entities (1)
  • auxiliary phantom deployment point d0
    purpose: Provides the baseline loss L({d0}) in Eq. (5) so that maximizing the utility measures improvement over placing no real agents.
    Mathematical device from the exemplar-clustering construction [29]; not a physical asset and has no independent observable consequences.

how reviews work

0 comments
Cite this review

Pith. "Pith review of NavEX: A Multi-Agent Coverage in Non-Convex and Uneven Environments via Exemplar-Clustering." pith.science (2026). https://pith.science/paper/CBDAEFHY

@misc{pith2026250421113,
  author       = {Pith},
  title        = {Pith review of: NavEX: A Multi-Agent Coverage in Non-Convex and Uneven Environments via Exemplar-Clustering},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/CBDAEFHY}},
  note         = {Machine review of arXiv:2504.21113}
}
read the original abstract

This paper addresses multi-agent deployment in non-convex and uneven environments. To overcome the limitations of traditional approaches, we introduce Navigable Exemplar-Based Dispatch Coverage (NavEX), a novel dispatch coverage framework that combines exemplar-clustering with obstacle-aware and traversability-aware shortest distances, offering a deployment framework based on submodular optimization. NavEX provides a unified approach to solve two critical coverage tasks: (a) fair-access deployment, aiming to provide equitable service by minimizing agent-target distances, and (b) hotspot deployment, prioritizing high-density target regions. A key feature of NavEX is the use of exemplar-clustering for the coverage utility measure, which provides the flexibility to employ non-Euclidean distance metrics that do not necessarily conform to the triangle inequality. This allows NavEX to incorporate visibility graphs for shortest-path computation in environments with planar obstacles, and traversability-aware RRT* for complex, rugged terrains. By leveraging submodular optimization, the NavEX framework enables efficient, near-optimal solutions with provable performance guarantees for multi-agent deployment in realistic and complex settings, as demonstrated by our simulations.

Figures

Figures reproduced from arXiv: 2504.21113 by the authors.

Figure 1
Figure 1. A non-convex environment overlaid with the correspond￾ing visibility graph that is used as a distance metric. The shortest path is highlighted in red between two random points. can resort to approximate methods such as those using the RRT⋆ algorithm [26], [27]. For uneven environments, in NavEX framework, we adopt the approach of Leininger et al. [28] to construct a traversabil￾ity map Mτ that characterizes navigabl… view at source ↗
Figure 2
Figure 2. Distance metric via traversability-aware RRT⋆ : two generated paths show the traversability impacts the distance between start and goal points. Depending on the terrain, the path may entirely circumvent the obstacle formed by hills, while in other traversable regions, the algorithm allows direct passage. we can leverage the independence of these computations–each tree is independent of the others–and parallelize the… view at source ↗
Figure 3
Figure 3. Fair-access deployment using NavEX in a workspace with (left plot) and without (right plot) obstacles [PITH_FULL_IMAGE:figures/full_fig_p005_3.png] view at source ↗
Figures from the paper (2 more)
Figure 4
Figure 4. Figure 4: Hotspot deployment using NavEX. shown in [PITH_FULL_IMAGE:figures/full_fig_p005_4.png]
Figure 5
Figure 5. Figure 5: The outcome of fair-access deployment using NavEX in two distinct uneven terrains. Plots (a) and (d) show the terrains, with corresponding deployment scenarios to their right. Heatmaps show traversability maps. [7] Y. Stergiopoulos, M. Thanou, and A. Tzes, “Distributed…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

29 extracted references · 23 canonical work pages

  1. [1]

    Multi-agent Coverage Control: From Discrete Assignments to Continuous Multi-agent Distribution Matching

    S. S. Kia, , and S. Martinez, “Multi-agent coverage control: From discrete assignments to continuous multi-agent distribution matching,” ASME Dynamic Systems & Control Division Newsletter , 2024. Avaiable at arXiv:2407.13890

  2. [2]

    M. V . Espina, R. Grech, D. De Jager, P. Remagnino, L. Iocchi, L. Marchetti, D. Nardi, D. Monekosso, M. Nicolescu, and C. King, Multi-robot Teams for Environmental Monitoring , pp. 183–209. Berlin, Heidelberg: Springer Berlin Heidelberg, 2011

  3. [3]

    Coverage control for mobile sensing networks,

    J. Cortes, S. Martinez, T. Karatas, and F. Bullo, “Coverage control for mobile sensing networks,” IEEE Transactions on Robotics and Automation, vol. 20, no. 2, pp. 243–255, 2004

  4. [4]

    Statistical coverage control of mobile sensor networks,

    O. Arslan, “Statistical coverage control of mobile sensor networks,” IEEE Transactions on Robotics , vol. 35, no. 4, pp. 889–908, 2019

  5. [5]

    Decentralized, adaptive cover- age control for networked robots,

    M. Schwager, D. Rus, and J.-J. Slotine, “Decentralized, adaptive cover- age control for networked robots,” The International Journal of Robotics Research, vol. 28, no. 3, pp. 357–375, 2009

  6. [6]

    A coverage algorithm for a class of non-convex regions,

    C. H. Caicedo-Nunez and M. Zefran, “A coverage algorithm for a class of non-convex regions,” in IEEE Int. Conf. on Decision and Control , pp. 4244–4249, 2008. 6 (a) Terrain Model one. (b) Fair-access deployment using traversability-aware RRT⋆ distance metric. (c) Fair-access deployment using un- weighted RRT ⋆ distance metric oblivious to traversability. ...

  7. [7]

    Distributed collaborative coverage-control schemes for non-convex domains,

    Y . Stergiopoulos, M. Thanou, and A. Tzes, “Distributed collaborative coverage-control schemes for non-convex domains,” IEEE Transactions on Automatic Control , vol. 60, no. 9, pp. 2422–2427, 2015

  8. [8]

    Multi-robot coverage and ex- ploration on riemannian manifolds with boundaries,

    S. Bhattacharya, R. Ghrist, and V . Kumar, “Multi-robot coverage and ex- ploration on riemannian manifolds with boundaries,” The International Journal of Robotics Research , vol. 33, no. 1, pp. 113–137, 2014

Show all 29 references
  1. [9]

    V oronoi-based multi-robot autonomous exploration in unknown environments via deep reinforcement learning,

    J. Hu, H. Niu, J. Carrasco, B. Lennox, and F. Arvin, “V oronoi-based multi-robot autonomous exploration in unknown environments via deep reinforcement learning,” IEEE Transactions on V ehicular Technology , vol. 69, no. 12, pp. 14413–14423, 2020

  2. [10]

    Distributed multirobot coverage control of nonconvex environments with guarantees,

    A. S. Yengejeh, A. B. Asghar, and S. L. Smith, “Distributed multirobot coverage control of nonconvex environments with guarantees,” IEEE Transactions on Control of Network Systems , vol. 10, no. 2, pp. 796– 808, 2023

  3. [11]

    Adaptive centroidal voronoi tessellation with agent dropout and reinsertion for multi-agent non-convex area coverage,

    K. Lee and K. Lee, “Adaptive centroidal voronoi tessellation with agent dropout and reinsertion for multi-agent non-convex area coverage,”IEEE Access, vol. 12, pp. 5503–5516, 2024

  4. [12]

    Approximating k-median via pseudo- approximation,

    S. Li and O. Svensson, “Approximating k-median via pseudo- approximation,” SIAM Journal on Computing , vol. 45, no. 2, pp. 530– 547, 2016

  5. [13]

    Re- silient coverage: Exploring the local-to-global trade-off,

    R. K. Ramachandran, L. Zhou, J. A. Preiss, and G. S. Sukhatme, “Re- silient coverage: Exploring the local-to-global trade-off,” in IEEE/RSJ Int. Conf. on Intelligent Robots & Systems , pp. 11740–11747, 2020

  6. [14]

    Exploiting submodularity to quantify near-optimality in multi-agent coverage problems,

    X. Sun, C. G. Cassandras, and X. Meng, “Exploiting submodularity to quantify near-optimality in multi-agent coverage problems,” Automatica, vol. 100, pp. 349–359, 2019

  7. [15]

    Near-optimal sensor placements in Gaussian processes: Theory, efficient algorithms and empirical stud- ies,

    A. Krause, A. Singh, and C. Guestrin, “Near-optimal sensor placements in Gaussian processes: Theory, efficient algorithms and empirical stud- ies,” J. Mach. Learn. Res. , vol. 9, p. 235–284, jun 2008

  8. [16]

    Submodular maximization subject to uniform and partition matroids: From theory to practical applications and distributed solu- tions,

    S. S. Kia, “Submodular maximization subject to uniform and partition matroids: From theory to practical applications and distributed solu- tions,” arXiv preprint arXiv:2501.01071 , 2025

  9. [17]

    Submodular optimization for coupled task allocation and intermittent deployment problems,

    J. Liu and R. K. Williams, “Submodular optimization for coupled task allocation and intermittent deployment problems,” IEEE Robotics and Automation Letters, vol. 4, no. 4, pp. 3169–3176, 2019

  10. [18]

    Resource-aware distributed submodular max- imization: A paradigm for multi-robot decision-making,

    Z. Xu and V . Tzoumas, “Resource-aware distributed submodular max- imization: A paradigm for multi-robot decision-making,” in IEEE Int. Conf. on Decision and Control , pp. 5959–5966, 2022

  11. [19]

    Distributed strategy selection: A sub- modular set function maximization approach,

    N. Rezazadeh and S. S. Kia, “Distributed strategy selection: A sub- modular set function maximization approach,” Automatica, vol. 153, p. 111000, 2023

  12. [20]

    Inverse submodular maximization with application to human-in-the-loop multi-robot multi-objective coverage control,

    G. Shi and G. S. Sukhatme, “Inverse submodular maximization with application to human-in-the-loop multi-robot multi-objective coverage control,” arXiv preprint arXiv:2403.10991 , 2024

  13. [21]

    Kaufman and P

    L. Kaufman and P. Rousseeuw, Finding Groups in Data: An Introduction To Cluster Analysis . Wiley, 01 1990

  14. [22]

    Streaming submodular maximization: Massive data summarization on the fly,

    A. Badanidiyuru, B. Mirzasoleiman, A. Karbasi, and A. Krause, “Streaming submodular maximization: Massive data summarization on the fly,” in ACM SIGKDD international conference on Knowledge discovery and data mining , pp. 671–680, 2014

  15. [23]

    De Berg, Computational geometry: algorithms and applications

    M. De Berg, Computational geometry: algorithms and applications . Springer Science & Business Media, 2000

  16. [24]

    Informed rrt*: Optimal sampling-based path planning focused via direct sampling of an admissible ellipsoidal heuristic,

    J. D. Gammell, S. S. Srinivasa, and T. D. Barfoot, “Informed rrt*: Optimal sampling-based path planning focused via direct sampling of an admissible ellipsoidal heuristic,” in IEEE/RSJ Int. Conf. on Intelligent Robots & Systems , pp. 2997–3004, 2014

  17. [25]

    An algorithm for planning collision- free paths among polyhedral obstacles,

    T. Lozano-Pérez and M. A. Wesley, “An algorithm for planning collision- free paths among polyhedral obstacles,” Commun. ACM , vol. 22, p. 560–570, Oct. 1979

  18. [26]

    S. K. Ghosh, Visibility Graphs, p. 136–170. Cambridge University Press, 2007

  19. [27]

    Sampling-based algorithms for optimal motion planning,

    S. Karaman and E. Frazzoli, “Sampling-based algorithms for optimal motion planning,” The International Journal of Robotics Research , vol. 30, pp. 846 – 894, 2011

  20. [28]

    Gaussian process-based traversability analysis for terrain mapless navigation,

    A. Leininger, M. Ali, H. Jardali, and L. Liu, “Gaussian process-based traversability analysis for terrain mapless navigation,” in IEEE Int. Conf. on Robotics and Automation , pp. 10925–10931, 2024

  21. [29]

    Budgeted nonparametric learning from data streams,

    R. Gomes and A. Krause, “Budgeted nonparametric learning from data streams,” in International Conference on Machine Learning , (Haifa, Israel), 2010

Pith tools

Reviewed August 16, 2026 · model on record in the stance chip above.