From 5c2e856491bda27d5ede0416735355c8b25a892e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Defferrard?= Date: Sun, 24 Feb 2019 23:53:07 +0100 Subject: [PATCH] nngraph: fix intermittent test failure of nmslib --- pygsp/tests/test_graphs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pygsp/tests/test_graphs.py b/pygsp/tests/test_graphs.py index a36bb778..2450fe90 100644 --- a/pygsp/tests/test_graphs.py +++ b/pygsp/tests/test_graphs.py @@ -434,7 +434,7 @@ def test_nngraph(self, n_vertices=24): Graph(data, backend='flann', algorithm='kmeans') Graph(data, backend='nmslib', method='vptree') Graph(data, backend='nmslib', index=dict(post=2)) - Graph(data, backend='nmslib', query=dict(efSearch=10)) + Graph(data, backend='nmslib', query=dict(efSearch=100)) for backend in ['scipy-kdtree', 'scipy-ckdtree']: Graph(data, backend=backend, eps=1e-2) Graph(data, backend=backend, leafsize=9)