REVIEW 4 major objections 4 minor 60 references
The paper establishes that distance queries to a point set can be answered by a smooth, differentiable function with a (1+ε) multiplicative error, while matching the query time and storage of the best approximate-nearest-neighbor structures
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · deepseek-v4-flash
2026-08-03 01:25 UTC pith:AIPYV6SD
load-bearing objection A serious new construction with a load-bearing missing lemma: patch-validity is asserted, not proved, so Theorem 1.1 is conditional. the 4 major comments →
Differentiable Approximations for Distance Queries
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
The paper's central claim is that for any set P of n points in R^d and 0<ε≤1/2, there exists a smooth function d̃_P with d_P ≤ d̃_P ≤ (1+ε)d_P everywhere, computable with its gradient in O(log(n/ε)) time from O(n/ε^(d/2)) space, with gradient norm O(1) and Hessian norm O(1/(ε d_P)). The function is the square root of a blended squared-distance estimate: overlapping patches cover space; each patch carries one representative point and a local squared-distance approximation; normalized bump functions meld these into a smooth global function. To make the cover cheap, the paper introduces an Ellipsoidal approximate Voronoi Diagram built from distance-based Macbeath regions of expanded Voronoi cel
What carries the argument
The central object is a partition-of-unity blending system over an Ellipsoidal approximate Voronoi Diagram (EVD). Each patch is the intersection of component shapes—a ball, a ring, or a Macbeath ellipsoid—with shape functions σ mapping the interior to (-1,1); the weight of a patch is a product of bump functions µ(σ), normalized to sum to one. Each patch stores a representative point rep(Π_i) and a local approximation f_i(x)=||x-rep(Π_i)||², engineered so that f_i stays within (1+ε) of the true squared distance over the whole support. The EVD is built from distance-based Macbeath regions M_δ(x), the Macbeath region (largest centrally symmetric body around x inside a convex set) of the expande
Load-bearing premise
The construction works only if, for every patch used in blending, its single stored representative is an (1+ε)-approximate nearest neighbor for every query point in the patch's support; the paper engineers cell sizes toward this but does not state it as a separate lemma, and validity for the expanded blending cells follows only implicitly from the decomposition constants.
What would settle it
Take a two-point set P at distance 2, set ε=0.5, and evaluate the blended approximation along the perpendicular bisector of the segment. The true distance is constant along this line; the approximation must be smooth, between d_P and 1.5·d_P, and have gradient norm O(1). A visible kink or a value above 1.5·d_P at the midpoint would show the blending or the witness validity fails. Alternatively, implement the EVD on a small point set and sample each leaf patch's expanded support to check the local inequality D_P ≤ f_i ≤ (1+ε)D_P; any violation at a boundary cell falsifies Theorem 1.1.
If this is right
- Differentiable distance queries become available to gradient-based optimizers at no asymptotic penalty over plain approximate-nearest-neighbor search.
- The (1+ε) multiplicative bound holds uniformly over all of R^d, and the gradient/Hessian norms match the optimal rates known for regularized distances.
- The EVD itself is a new approximate-nearest-neighbor structure that avoids the lifting transformation and ray shooting, giving a simpler route to ANN queries in the non-differentiable setting.
- Because the partition-of-unity framework is generic over shape functions, the same smoothing scheme can be reused for other geometric approximations, such as penetration depth or radiance fields.
- Blending only adds a constant-factor replication of cells (Lemma 5.3), so the O(n/ε^(d/2)) space bound is not worsened by smoothing.
Where Pith is reading between the lines
- The storage is exponential in dimension (ε^(-d/2)), so the practical impact is likely limited to low-dimensional problems; extending the same guarantees to high-dimensional ANN settings would require a different cover.
- The gradient bound O(1) is loose compared with the exact distance's unit gradient; a natural next question, flagged by the authors, is whether a (1+ε)-accurate gradient can be obtained within the same storage budget.
- The approach could plausibly carry over to kth-nearest-neighbor distances or distances to surfaces if compatible shape functions for those settings can be constructed, but each extension would need its own validity argument for local approximations.
- The spurious local minima that the authors mention could obstruct gradient-based optimization; testing whether a simple modification of the partition removes them would be an immediate empirical extension.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes a smooth multiplicative (1+ε)-approximation of the Euclidean distance to a set of n points in fixed dimension. The approximant is built by blending local squared-distance functions over a partition of unity. The main Theorem 1.1 claims O(n/ε^{d/2}) storage and O(log(n/ε)) query time for evaluation with gradient, with gradient norm O(1) and Hessian norm O(1/(ε d_P)), matching lower bounds for regularized distances. The technical construction combines a balanced box decomposition tree with a new ellipsoidal approximate Voronoi diagram based on distance-based Macbeath regions; Sections 5.1–5.2 adapt the EVD and BBD cells to define compatible ball, ring, and ellipsoid shape functions, and Appendix A.1 derives the blending calculus.
Significance. The result, if correct, is significant: it would give the first distance-query data structure that is simultaneously differentiable, matches state-of-the-art ANN storage/query bounds, and achieves asymptotically optimal derivative norms. The partition-of-unity algebra in Appendix A.1 is careful, and the compatibility abstraction is a useful methodological contribution. The distance-based Macbeath/EVD construction is elegant and avoids lifting and ray-shooting. However, the main theorem currently rests on an unproven patch-validity condition for expanded supports, and a few supporting lemmas are asserted without proof; these gaps are fixable but must be closed before the central claim can be accepted.
major comments (4)
- [Eq. (2.2)/Lemma 2.1, §5.1–5.2] The global proof assumes every active patch satisfies the local bound f_i(x)=||x−rep(Π_i)||² ≤ (1+ε)D_P(x) on its whole support. Lemma 3.4 only proves that the terminal EVD node's representative is an ε-ANN for q inside the EVD's own cell w. The smoothing stage activates ellipsoid patches on rings R_i=(5·2^{i−1})b \ (3·2^{i−2})b and ball patches on 2b_w, which can contain q outside w (and inside b_i), where Lemma 3.4's ratio δ_i/||p−q||≤√ε is not established. Without a patch-validity lemma for every active patch, Eq. (2.2) can violate the (1+ε)D_P upper bound and the estimates |ζ_i|=O(εd_P²) and ||∇eD_P||=O(d_P) fail. Please prove validity for each patch type over its full support.
- [Appendix A.5, Lemma A.6] Lemma A.6 is asserted without proof, yet Lemma 3.6 uses it to bound the out-degree of every EVD node by O(1). The constant-degree property drives ΔΠ=O(1) (Lemma 5.5) and the storage bound O(1/ε^{d/2}) (Lemma 3.7). Moreover, the notation Kδ and λ0 is not defined. Please supply the proof or a precise reference; the volume inequality (b) is not immediate.
- [§5.3, Lemma 5.6] The proof asserts a uniform lower bound cΨ>0.009 by referring to properties '(b)' and '(d)' that are not enumerated, and states without derivation that every z lies in E^{1/4}_{δ_k}(x). This bound is needed for the factors 1/Ψ in Lemmas 2.1 and A.2; without it the ζ_i and ∇ζ_i estimates are not justified. Please make the referenced properties explicit and give the covering argument.
- [§4 vs Lemma 4.1] The text instantiates the top-level AVD with γ=2, whereas Lemma 4.1 requires γ≥5 and its proof uses α=5. If γ=2 is genuinely used, the stated AVD separation properties are not available; if γ=5 is meant, the text should be corrected. The reduction to EVD structures depends on this.
minor comments (4)
- [§4, Theorem 4.1] The theorem states query time O(logn/ε), which conflicts with O(log(n/ε)) in Theorem 1.1 and the abstract. Please clarify whether the intended bound is O(log(n/ε)).
- [Appendix A.7.1] The heading says 'ball and run shape functions'; 'run' should be 'ring'.
- [Lemma 5.3 proof] The sample constants are inconsistent: with c1=15, c2=4, α=5, γ=2, the displayed bound gives Δ=(2+4·15·4)/(5−2)=242/3≈80.7, not <41. The constants or the numerical bound should be corrected; the conclusion remains O(1).
- [Appendix A.5, Lemma A.6] The parameter λ0 appears in the statement but is not used; presumably λ is intended.
Circularity Check
No significant circularity: new partition-of-unity and EVD constructions carry the proof; self-citations are background support.
full rationale
No significant circularity found. Theorem 1.1's upper/lower bounds rely on patch-local approximations that are constructed by a new EVD and BBD cover; the global blend in Eq. (2.2) is convex, so no fitted parameter is renamed as a prediction. Gradient and Hessian bounds are derived from the stated compatibility Definition 2.1, and each employed shape function (ball, ring, Macbeath ellipsoid) is proven compatible in Lemmas 5.1, 5.2, 5.4 and Appendix A.7. The paper cites its authors' prior works [1,2,6,7,9] for background and Macbeath-related facts, but the central construction and complexity bounds are developed from new proofs, not by importing an unverified uniqueness theorem. The most significant caveat — that no lemma explicitly proves every active patch's local (1+ε) bound after support expansion in Section 5 — is a correctness gap, not a circular definition or fitted-input prediction, and therefore does not raise the circularity score.
Axiom & Free-Parameter Ledger
free parameters (2)
- λ1 Macbeath packing scale =
1/(16√d+1), later 1/(32√d+1)
- AVD blending constants (c1, c2, α, γ, β) =
c1=15, c2=4, α=5, γ=2, β=2
axioms (8)
- standard math John's ellipsoid theorem and Macbeath scaling behavior (Eq. 3.12, Lemma A.6)
- standard math Lifting transformation maps Voronoi cells to facets of convex polyhedron E(P) (Lemmas A.3–A.4)
- standard math Arya et al. cap-cover bound (Lemma A.5)
- standard math BBD tree/AVD separation properties (Lemma 4.1) and WSPD construction
- domain assumption d fixed constant, 0<ε≤1/2, finite P
- ad hoc to paper Compatible shape function conditions (Definition 2.1)
- ad hoc to paper Patch-local validity: every active patch's representative is an ε-ANN on the full patch support
- ad hoc to paper Ring-function bound |σ^[r]|≤3/4 on overlaps
read the original abstract
The widespread use of gradient-based optimization has motivated the adaptation of various classical algorithms into differentiable solvers compatible with learning pipelines. In this paper, we investigate the enhancement of traditional geometric query problems such that the result consists of both the geometric function as well as its gradient. Specifically, we study the fundamental problem of distance queries against a set of points $P$ in $\mathbb{R}^d$, which also underlies various similarity measures for learning algorithms. The main result of this paper is a multiplicative $(1+\varepsilon)$-approximation of the Euclidean distance to $P$ which is differentiable at all points in $\mathbb{R}^d \setminus P$ with asymptotically optimal bounds on the norms of its gradient and Hessian, from a data structure with storage and query time matching state-of-the-art results for approximate nearest-neighbor searching. The approximation is realized as a regularized distance through a partition-of-unity framework, which efficiently blends multiple local approximations, over a suitably defined covering of space, into a smooth global approximation. In order to obtain the local distance approximations in a manner that facilitates blending, we develop a new approximate Voronoi diagram based on a simple point-location data structure, simplifying away both the lifting transformation and ray shooting.
Figures
Reference graph
Works this paper leans on
-
[1]
A. Abdelkader and D. M. Mount. Economical Delone sets for approximating convex bodies. InProc. 16th Scand. Workshop Algorithm Theory, pages 4:1–4:12, 2018.doi:10.4230/LIPIcs.SWAT.2018.4
-
[2]
A. Abdelkader and D. M. Mount. Smooth distance approximation. InProc. 31st Annu. European Sympos. Algorithms, pages 5:1–5:18, 2023.doi:10.4230/LIPIcs.ESA.2023.5
-
[3]
A. Agrawal, B. Amos, S. Barratt, S. Boyd, S. Diamond, and J. Z. Kolter. Differentiable convex optimization layers. In Adv. Neural Inf. Process. Syst. (NeurIPS), volume 32, pages 9562–9574, 2019. URL: https://dl.acm.org/doi/10. 5555/3454287.3455145
arXiv 2019
-
[4]
B. Amos and J. Z. Kolter. OptNet: Differentiable optimization as a layer in neural networks. InProc. 34th Internat. Conf. Mach. Learn., volume 70, pages 136–145, 2017. URL:https://dl.acm.org/doi/10.5555/3305381.3305396
arXiv 2017
-
[5]
S. Arora, N. Cohen, N. Golowich, and W. Hu. A convergence analysis of gradient descent for deep linear neural networks. InInternat. Conf. Learning Represent. (ICLR), 2019.doi:10.48550/arXiv.1810.02281
-
[6]
S. Arya, G. D. da Fonseca, and D. M. Mount. On the combinatorial complexity of approximating polytopes.Discrete Comput. Geom., 58(4):849–870, 2017.doi:10.1007/s00454-016-9856-5
-
[7]
S. Arya, G. D. da Fonseca, and D. M. Mount. Optimal approximate polytope membership. InProc. 28th Annu. ACM-SIAM Sympos. Discrete Algorithms, pages 270–288, 2017.doi:10.1137/1.9781611974782.18
-
[8]
S. Arya, G. D. da Fonseca, and D. M. Mount. Economical convex coverings and applications. InProc. 34th Annu. ACM-SIAM Sympos. Discrete Algorithms, pages 1834–1861, 2023.doi:10.1137/1.9781611977554.ch70
-
[9]
S. Arya, T. Malamatos, and D. M. Mount. Space-time tradeoffs for approximate nearest neighbor searching.J. Assoc. Comput. Mach., 57:1–54, 2009.doi:10.1145/1613676.1613677
arXiv 2009
-
[10]
S. Arya and D. M. Mount. Approximate range searching.Comput. Geom. Theory Appl., 17:135–163, 2000. doi:10.1007/s00454-012-9412-x
-
[11]
S. Arya, D. M. Mount, N. S. Netanyahu, R. Silverman, and A. Wu. An optimal algorithm for approximate nearest neighbor searching.J. Assoc. Comput. Mach., 45(6):891–923, 1998.doi:10.1145/293347.293348
arXiv 1998
-
[12]
A. Bakshi, P. Indyk, R. Jayaram, S. Silwal, and E. Waingarten. Near-linear time algorithm for the chamfer distance. InAdv. Neural Inf. Process. Syst. (NeurIPS), pages 66833–66844, 2023.doi:10.48550/arXiv.2307.03043
-
[13]
K. Ball. An elementary introduction to modern convex geometry. In S. Levy, editor,Flavors of Geometry, volume 31, pages 1–58. Cambridge University Press, 1997. URL:https://api.semanticscholar.org/CorpusID:117250055
1997
-
[14]
I. B´ ar´ any. Random polytopes, convex bodies, and approximation. In W. Weil, editor,Stochastic Geometry, volume 1892 ofLecture Notes in Mathematics, pages 77–118. Springer, 2007.doi:10.1007/978-3-540-38175-4_2
-
[15]
I. B´ ar´ any and D. G. Larman. Convex bodies, economic cap coverings, random polytopes.Mathematika, 35:274–291, 1988.doi:10.1112/S0025579300015266
-
[16]
U. Bauer and H. Edelsbrunner. The Morse theory of ˇCech and Delaunay complexes.Trans. Amer. Math. Soc., 369:3741–3762, 2017.doi:10.1090/tran/6991
-
[17]
Boissonnat and M
J.-D. Boissonnat and M. Yvinec.Algorithmic Geometry. Cambridge University Press, 1998. Translated by H. Bronnimann
1998
-
[18]
Boyd and L
S. Boyd and L. Vandenberghe.Convex optimization. Cambridge university press, 2004
2004
-
[19]
K. Buchin, T. K. Dey, J. Giesen, and M. John. Recursive geometry of the flow complex and topology of the flow complex filtration.Comput. Geom. Theory Appl., 40(2):115–137, 2008.doi:10.1016/j.comgeo.2007.05.005
-
[20]
P. B. Callahan and S. R. Kosaraju. A decomposition of multidimensional point sets with applications to k-nearest- neighbors andn-body potential fields.J. Assoc. Comput. Mach., 42:67–90, 1995.doi:10.1145/200836.200853
arXiv 1995
-
[21]
M. Charikar, K. Kapralov, and E. Waingarten. A quasi-monte carlo data structure for smooth kernel evaluations. In Proc. 35th Annu. ACM-SIAM Sympos. Discrete Algorithms, pages 5118–5144, 2024. doi:10.1137/1.9781611977912. 184
-
[22]
B. Chazelle and J. Matouˇ sek. On linear-time deterministic algorithms for optimization problems in fixed dimension.J. Algorithms, 21:579–597, 1996.doi:10.1006/jagm.1996.0060
arXiv 1996
-
[23]
R. T. Q. Chen, Y. Rubanova, J. Bettencourt, and D. K. Duvenaud. Neural ordinary differential equations. InAdv. Neural Inf. Process. Syst. (NeurIPS), volume 31, pages 6572–6583, 2018.doi:10.48550/arXiv.1806.07366
-
[24]
Choset, K
H. Choset, K. M. Lynch, S. Hutchinson, G. A. Kantor, and W. Burgard. Potential functions. InPrinciples of Robot Motion: Theory, Algorithms, and Implementations, pages 77–106. MIT press, 2005
2005
-
[25]
K. L. Clarkson. An algorithm for approximate closest-point queries. InProc. Tenth Annu. Sympos. Comput. Geom., pages 160–164, 1994.doi:10.1145/177424.177609
arXiv 1994
-
[26]
K. Crane, M. Livesu, E. Puppo, and Y. Qin. A survey of algorithms for geodesic paths and distances, 2020. arXiv:2007.10430
Pith/arXiv arXiv 2020
-
[27]
de Avila Belbute-Peres, K
F. de Avila Belbute-Peres, K. Smith, K. Allen, J. Tenenbaum, and J. Z. Kolter. End-to-end differentiable physics for learning and control. InAdv. Neural Inf. Process. Syst. (NeurIPS), volume 31, pages 7178–7189, 2018. URL: https://hdl.handle.net/1721.1/126615
2018
-
[28]
M. de Berg, O. Cheong, M. van Kreveld, and M. Overmars.Computational Geometry: Algorithms and Applications. Springer, 3rd edition, 2010.doi:10.1007/978-3-540-77974-2
-
[29]
M. Edelstein, N. Guillen, J. Solomon, and M. Ben-Chen. A convex optimization framework for regularized geodesic distances. InACM SIGGRAPH 2023 Conf. Proc., 2023.doi:10.1145/3588432.3591523
arXiv 2023
-
[30]
L. E. Fraenkel. On regularized distance and related functions.Proc. Roy. Soc. Edinburgh Sect. A, 83(1-2):115–122, 1979.doi:10.1017/S0308210500011434
-
[31]
C. D. Freeman, E. Frey, A. Raichuk, S. Girgin, I. Mordatch, and O. Bachem. Brax - A differentiable physics engine for large scale rigid body simulation. InAdv. Neural Inf. Process. Syst. (Datasets and Benchmarks Proceedings), 2021. doi:10.48550/arXiv.2106.13281
-
[32]
S. Fridovich-Keil, A. Yu, M. Tancik, Q. Chen, B. Recht, and A. Kanazawa. Plenoxels: Radiance fields without neural networks. InProc. IEEE/CVF Conf. Comput. Vis. Patt. Recog. (CVPR), pages 5501–5510, 2022. doi:10.1109/CVPR52688.2022.00542
arXiv 2022
-
[33]
E. G¨ artner, L. Metz, M. Andriluka, C. D. Freeman, and C. Sminchisescu. Transformer-based learned optimization. InProc. IEEE/CVF Conf. Comput. Vis. Patt. Recog. (CVPR), pages 11970–11979, 2023. doi:10.1109/CVPR52729. 2023.01152
arXiv 2023
-
[34]
Goodfellow, Y
I. Goodfellow, Y. Bengio, and A. Courville.Deep learning. MIT press, 2016. URL: http://www.deeplearningbook. org
2016
-
[35]
Deluca -- A Differentiable Control Library: Environments, Methods, and Benchmarking
P. Gradu, J. Hallman, D. Suo, A. Yu, N. Agarwal, U. Ghai, K. Singh, C. Zhang, A. Majumdar, and E. Hazan. Deluca–a differentiable control library: Environments, methods, and benchmarking. InNeurIPS 2020 Workshop on Differentiable Computer Vision, Graphics and Physics in Machine Learning, 2021. doi:10.48550/arXiv.2102.09968
work page internal anchor Pith review Pith/arXiv arXiv doi:10.48550/arxiv.2102.09968 2020
-
[36]
B. Guillard, E. Remelli, A. Lukoianov, P. Yvernay, S. R. Richter, T. Bagautdinov, P. Baque, and P. Fua. DeepMesh: Differentiable iso-surface extraction.IEEE Trans. Pattern Anal. Mach. Intell., pages 1–15, 2024. doi:10.1109/TPAMI.2024.3392291
arXiv 2024
- [37]
-
[38]
Har-Peled.Geometric Approximation Algorithms, volume 173
S. Har-Peled.Geometric Approximation Algorithms, volume 173. American Mathematical Society, 2011. doi: 10.1090/surv/173
-
[39]
S. Har-Peled, P. Indyk, and R. Motwani. Approximate nearest neighbor: Towards removing the curse of dimensionality. Theo. of Comput., 8:321–350, 2012.doi:10.4086/toc.2012.v008a014
-
[40]
S. Har-Peled and N. Kumar. Approximating minimization diagrams and generalized proximity search.SIAM J. Comput., 44:944–974, 2015.doi:10.1137/140959067
-
[41]
Y. Hu, L. Anderson, T.-M. Li, Q. Sun, N. Carr, J. Ragan-Kelley, and F. Durand. DiffTaichi: Differentiable programming for physical simulation. InInternat. Conf. Learning Represent. (ICLR), 2020.doi:10.48550/arXiv.1910.00935
-
[42]
S. Kumabe and Y. Yoshida. Lipschitz continuous algorithms for covering problems, 2023.arXiv:2307.08213
Pith/arXiv arXiv 2023
-
[43]
S. Kumabe and Y. Yoshida. Lipschitz continuous algorithms for graph problems. InProc. 64th Annu. IEEE Sympos. Found. Comput. Sci., pages 762–797, 2023.doi:10.1109/FOCS57990.2023.00051
arXiv 2023
-
[44]
S. Kumabe and Y. Yoshida. Lipschitz continuous allocations for optimization games. InProc. 51st Internat. Colloq. Automata Lang. Prog., pages 102:1–102:16, 2024.doi:10.4230/LIPIcs.ICALP.2024.102
-
[45]
Z. Lai, K. Wei, Y. Fu, P. H¨ artel, and F. Heide.∇-Prox: Differentiable proximal algorithm modeling for large-scale optimization.ACM Trans. Graph., 42:1–19, 2023.doi:10.1145/3592144
-
[46]
Y. LeCun, Y. Bengio, and G. Hinton. Deep learning.Nature, 521:436–444, 2015.doi:10.1038/nature14539
-
[47]
D. T. Lee and C. K. Wong. Worst-case analysis for region and partial region searches in multidimensional binary search trees and balanced quad trees.Acta Informatica, 9:23–29, 1977.doi:10.1007/BF00263763
-
[48]
J. M. Lee. Smooth maps. InIntroduction to Smooth Manifolds, pages 30–59. Springer, 2003. doi:10.1007/ 978-1-4419-9982-5_2
2003
-
[49]
M. M. Loper and M. J. Black. OpenDR: An approximate differentiable renderer. InComputer Vision – ECCV 2014, pages 154–169, 2014.doi:10.1007/978-3-319-10584-0_11
-
[50]
W. Meulemans, B. Speckmann, K. Verbeek, and J. Wulms. A framework for algorithm stability and its application to kinetic euclidean MSTs. InLATIN 2018: Theoretical Informatics, pages 805–819, 2018. doi: 10.1007/978-3-319-77404-6_58
-
[51]
Theseus: A Library for Differentiable Nonlinear Optimization
L. Pineda, T. Fan, M. Monge, S. Venkataraman, P. Sodhi, R. T. Q. Chen, J. Ortiz, D. DeTone, A. Wang, S. Anderson, J. Dong, B. Amos, and M. Mukadam. Theseus: A library for differentiable nonlinear optimization. InAdv. Neural Inf. Process. Syst. (NeurIPS), volume 35, pages 3801–3818, 2022.doi:10.48550/arXiv.2207.09442
work page internal anchor Pith review Pith/arXiv arXiv doi:10.48550/arxiv.2207.09442 2022
-
[52]
R. Qiu, Z. Sun, and Y. Yang. DIMES: A differentiable meta solver for combinatorial optimization problems. InAdv. Neural Inf. Process. Syst. (NeurIPS), volume 35, pages 25531–25546, 2022.doi:10.48550/arXiv.2210.04123
-
[53]
D. Siersma. Voronoi diagrams and Morse theory of the distance function. InGeometry in Present Day Science, pages 187–208, 1999
1999
-
[54]
E. M. Stein.Singular Integrals and Differentiability Properties of Functions. Princeton Mathematical Series (PMS-30). Princeton University Press, 1970. URL:https://www.jstor.org/stable/j.ctt1bpmb07
1970
-
[55]
I. van der Hoog, M. van Kreveld, W. Meulemans, K. Verbeek, and J. Wulms. Topological stability of kinetic k-centers. Theoretical Computer Science, 866:145–159, 2021.doi:10.1016/j.tcs.2021.03.026
-
[56]
P.-W. Wang, P. Donti, B. Wilder, and Z. Kolter. SATNet: Bridging deep learning and logical reasoning using a differentiable satisfiability solver. InProc. 36th Internat. Conf. Mach. Learn., volume 97, pages 6545–6554. PMLR,
-
[57]
V. J. Wei, R. C.-W. Wong, C. Long, D. M. Mount, and H. Samet. Proximity queries on terrain surface.ACM Trans. Database Syst., 47:1–59, 2022.doi:10.1145/3563773
-
[58]
Let the Flows Tell: Solving Graph Combinatorial Optimization Problems with GFlowNets
D. Zhang, H. Dai, N. Malkin, A. C. Courville, Y. Bengio, and L. Pan. Let the flows tell: Solving graph combinatorial problems with GFlowNets. InAdv. Neural Inf. Process. Syst. (NeurIPS), volume 36, pages 11952–11969, 2023. doi:10.48550/arXiv.2305.17010
work page internal anchor Pith review Pith/arXiv arXiv doi:10.48550/arxiv.2305.17010 2023
-
[59]
X. Zhang, Y. J. Kim, and D. Manocha. Continuous penetration depth.Comput. Aided Design, 46:3–13, 2014. doi:10.1016/j.cad.2013.08.013
-
[2019]
URL:https://proceedings.mlr.press/v97/wang19e.html
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.