summaryrefslogtreecommitdiff
path: root/geom_bottleneck/bottleneck/include/ANN/ANN.h
diff options
context:
space:
mode:
authorArnur Nigmetov <a.nigmetov@gmail.com>2016-09-05 13:32:05 +0200
committerArnur Nigmetov <a.nigmetov@gmail.com>2016-09-05 13:32:05 +0200
commit7b850b8ee43fb7f8a0b2a1565ed01102d40b0a14 (patch)
tree171852c6acd2c8be4390c53a52debf70ca4930b3 /geom_bottleneck/bottleneck/include/ANN/ANN.h
parentd1cf630f193cff61c83999600550634032ed1739 (diff)
Technical changes for R integration
Avoid including iostream (R complains about that). All output protected by preprocessor directive (R checker should not see an instance of std::cout << in your code). Also added getWassersteinCost to be in line with the Dionysus implementation used in TDA.
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
};
//----------------------------------------------------------------------