summaryrefslogtreecommitdiff
path: root/geom_bottleneck/bottleneck/include/ANN/ANN.h
diff options
context:
space:
mode:
Diffstat (limited to 'geom_bottleneck/bottleneck/include/ANN/ANN.h')
-rw-r--r--geom_bottleneck/bottleneck/include/ANN/ANN.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/geom_bottleneck/bottleneck/include/ANN/ANN.h b/geom_bottleneck/bottleneck/include/ANN/ANN.h
index cd48d8e..004dfe2 100644
--- a/geom_bottleneck/bottleneck/include/ANN/ANN.h
+++ b/geom_bottleneck/bottleneck/include/ANN/ANN.h
@@ -96,7 +96,6 @@
#include <cstdlib> // standard lib includes
#include <cmath> // math includes
-#include <iostream> // I/O streams
#include <cstring> // C-style strings
#include <vector>
#include <assert.h>
@@ -130,6 +129,12 @@
#define ANNcopyright "David M. Mount and Sunil Arya"
#define ANNlatestRev "Jan 27, 2010"
+#include "def_debug_bt.h"
+
+#ifndef FOR_R_TDA
+#include <iostream> // I/O streams
+#endif
+
namespace geom_bt {
//----------------------------------------------------------------------
// ANNbool
@@ -798,8 +803,10 @@ public:
int bs = 1, // bucket size
ANNsplitRule split = ANN_KD_SUGGEST); // splitting method
+#ifndef FOR_R_TDA
ANNkd_tree( // build from dump file
std::istream& in); // input stream for dump file
+#endif
~ANNkd_tree(); // tree destructor
@@ -834,6 +841,7 @@ public:
ANNpointArray thePoints() // return pointer to points
{ return pts; }
+#ifndef FOR_R_TDA
virtual void Print( // print the tree (for debugging)
ANNbool with_pts, // print points as well?
std::ostream& out); // output stream
@@ -841,6 +849,7 @@ public:
virtual void Dump( // dump entire tree
ANNbool with_pts, // print points as well?
std::ostream& out); // output stream
+#endif
virtual void getStats( // compute tree statistics
ANNkdStats& st); // the statistics (modified)
@@ -885,8 +894,10 @@ public:
ANNsplitRule split = ANN_KD_SUGGEST, // splitting rule
ANNshrinkRule shrink = ANN_BD_SUGGEST); // shrinking rule
+#ifndef FOR_R_TDA
ANNbd_tree( // build from dump file
std::istream& in); // input stream for dump file
+#endif
};
//----------------------------------------------------------------------