[mlpack-git] master: Add newline after message output. (dd7c8b9)

gitdub at big.cc.gt.atl.ga.us gitdub at big.cc.gt.atl.ga.us
Wed Dec 9 16:54:52 EST 2015


Repository : https://github.com/mlpack/mlpack

On branch  : master
Link       : https://github.com/mlpack/mlpack/compare/4a39d474593067343b4972d4a5217bcfae84ca5d...dd7c8b93fe5f299cb534cda70c1c786456f9a78f

>---------------------------------------------------------------

commit dd7c8b93fe5f299cb534cda70c1c786456f9a78f
Author: ryan <ryan at ratml.org>
Date:   Wed Dec 9 16:54:35 2015 -0500

    Add newline after message output.


>---------------------------------------------------------------

dd7c8b93fe5f299cb534cda70c1c786456f9a78f
 src/mlpack/methods/rann/ra_model_impl.hpp | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/mlpack/methods/rann/ra_model_impl.hpp b/src/mlpack/methods/rann/ra_model_impl.hpp
index 61fe067..390de09 100644
--- a/src/mlpack/methods/rann/ra_model_impl.hpp
+++ b/src/mlpack/methods/rann/ra_model_impl.hpp
@@ -16,8 +16,8 @@ namespace neighbor {
 template<typename SortPolicy>
 RAModel<SortPolicy>::RAModel(const int treeType, const bool randomBasis) :
     treeType(treeType),
-    randomBasis(randomBasis),
     leafSize(20),
+    randomBasis(randomBasis),
     kdTreeRA(NULL),
     coverTreeRA(NULL),
     rTreeRA(NULL),
@@ -453,6 +453,7 @@ void RAModel<SortPolicy>::Search(arma::mat&& querySet,
     Log::Info << "single-tree rank-approximate " << TreeName() << " search...";
   else
     Log::Info << "brute-force (naive) rank-approximate search...";
+  Log::Info << std::endl;
 
   switch (treeType)
   {
@@ -514,6 +515,7 @@ void RAModel<SortPolicy>::Search(const size_t k,
     Log::Info << "single-tree rank-approximate " << TreeName() << " search...";
   else
     Log::Info << "brute-force (naive) rank-approximate search...";
+  Log::Info << std::endl;
 
   switch (treeType)
   {



More information about the mlpack-git mailing list