[mlpack-git] master: Fix error in the order of parameters. (91334cb)

gitdub at mlpack.org gitdub at mlpack.org
Thu Aug 18 13:39:20 EDT 2016


Repository : https://github.com/mlpack/mlpack
On branch  : master
Link       : https://github.com/mlpack/mlpack/compare/0f4b25acd6aaa14294c044874ba6cc0751712baa...0a19d07bd39e6223991976474bc79671ba8aa0f0

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

commit 91334cbcb24b6ae2a9b26a762f8983e6ca99eaf5
Author: MarcosPividori <marcos.pividori at gmail.com>
Date:   Wed Jul 13 10:33:01 2016 -0300

    Fix error in the order of parameters.


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

91334cbcb24b6ae2a9b26a762f8983e6ca99eaf5
 src/mlpack/core/tree/spill_tree/spill_tree_impl.hpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mlpack/core/tree/spill_tree/spill_tree_impl.hpp b/src/mlpack/core/tree/spill_tree/spill_tree_impl.hpp
index 4bee000..7eb823a 100644
--- a/src/mlpack/core/tree/spill_tree/spill_tree_impl.hpp
+++ b/src/mlpack/core/tree/spill_tree/spill_tree_impl.hpp
@@ -491,9 +491,9 @@ void SpillTree<MetricType, StatisticType, MatType, BoundType, SplitType>::
 
   // Now we will recursively split the children by calling their constructors
   // (which perform this splitting process).
-  left = new SpillTree(this, leftPoints, overlapIndexLeft, maxLeafSize, tau,
+  left = new SpillTree(this, leftPoints, overlapIndexLeft, tau, maxLeafSize,
       rho);
-  right = new SpillTree(this, rightPoints, overlapIndexRight, maxLeafSize, tau,
+  right = new SpillTree(this, rightPoints, overlapIndexRight, tau, maxLeafSize,
       rho);
 
   // Update count number, to represent the number of descendant points.




More information about the mlpack-git mailing list