From bb96c92bd27d0b1a444b3862ee4e378e8650414b Mon Sep 17 00:00:00 2001 From: ChrisMzz Date: Tue, 20 Jan 2026 16:46:10 +0100 Subject: [PATCH] add qhull option 'QJ' in Delaunay tesselation --- src/gabrielgraph/_gabrielgraph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gabrielgraph/_gabrielgraph.py b/src/gabrielgraph/_gabrielgraph.py index 76542c9..d7a68e4 100644 --- a/src/gabrielgraph/_gabrielgraph.py +++ b/src/gabrielgraph/_gabrielgraph.py @@ -53,7 +53,7 @@ def build_gabriel_graph( """ if data_struct not in ["adj-dict", "adj-mat"]: raise ValueError("Data structure for the Gabriel graph not understood") - tmp = Delaunay(pos) + tmp = Delaunay(pos, qhull_options="QJ") delaunay_graph = {} for N in tmp.simplices: