From 197157838d7f2fd546584a4c1f317076122976f5 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 16 Apr 2022 13:59:38 +0200 Subject: [PATCH] fixed in_smart_range to use nisot::in_table_range --- hypgraph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hypgraph.cpp b/hypgraph.cpp index 55a35f2c..5084308b 100644 --- a/hypgraph.cpp +++ b/hypgraph.cpp @@ -1555,7 +1555,7 @@ EX bool in_smart_range(const shiftmatrix& T) { if(invalid_point(h)) return false; if(nil || nih) return true; #if CAP_SOLV - if(pmodel == mdGeodesic) return sn::in_table_range(h.h); + if(pmodel == mdGeodesic) return nisot::in_table_range(h.h); #endif hyperpoint h1; applymodel(h, h1);