[mlpack-svn] r16188 - mlpack/trunk/src/mlpack/tests

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Tue Jan 28 16:42:32 EST 2014


Author: birm
Date: Tue Jan 28 16:42:32 2014
New Revision: 16188

Log:
Added BallBound ToString test.


Modified:
   mlpack/trunk/src/mlpack/tests/To_String_Test.cpp

Modified: mlpack/trunk/src/mlpack/tests/To_String_Test.cpp
==============================================================================
--- mlpack/trunk/src/mlpack/tests/To_String_Test.cpp	(original)
+++ mlpack/trunk/src/mlpack/tests/To_String_Test.cpp	Tue Jan 28 16:42:32 2014
@@ -26,11 +26,21 @@
 #include <mlpack/methods/nca/nca_softmax_error_function.hpp>
 #include <mlpack/core/optimizers/aug_lagrangian/aug_lagrangian_test_functions.hpp>
 
+#include <mlpack/core/tree/ballbound.hpp>
+#include <mlpack/core/tree/binary_space_tree.hpp>
+#include <mlpack/core/tree/bounds.hpp>
+#include <mlpack/core/tree/mrkd_statistic.hpp>
+#include <mlpack/core/tree/hrectbound.hpp>
+#include <mlpack/core/tree/periodichrectbound.hpp>
+#include <mlpack/core/tree/statistic.hpp>
+
 using namespace mlpack;
 using namespace mlpack::kernel;
 using namespace mlpack::distribution;
 using namespace mlpack::metric;
 using namespace mlpack::nca;
+using namespace mlpack::bound;
+using namespace mlpack::tree;
 
 //using namespace mlpack::optimization;
 
@@ -162,4 +172,10 @@
   Log::Info << d;
 }
 
+BOOST_AUTO_TEST_CASE(BallBoundString)
+{
+  BallBound<> d;
+  Log::Info << d;
+}
+
 BOOST_AUTO_TEST_SUITE_END();



More information about the mlpack-svn mailing list