[mlpack-svn] r15937 - in mlpack/branches/mlpack-1.x/src/mlpack: core/data core/kernels core/tree/cover_tree methods/cf methods/gmm methods/kernel_pca methods/naive_bayes methods/nca methods/neighbor_search methods/pca methods/range_search methods/rann tests

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Fri Oct 4 13:10:01 EDT 2013


Author: rcurtin
Date: Fri Oct  4 13:10:00 2013
New Revision: 15937

Log:
Add licenses to files that did not have licenses.


Modified:
   mlpack/branches/mlpack-1.x/src/mlpack/core/data/normalize_labels.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/core/data/normalize_labels_impl.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/core/kernels/kernel_traits.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/core/tree/cover_tree/cover_tree_impl.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/cf/cf.cpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/cf/cf.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/cf/cf_main.cpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/gmm/diagonal_constraint.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/gmm/eigenvalue_ratio_constraint.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/gmm/no_constraint.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/gmm/positive_definite_constraint.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/kernel_pca/kernel_pca_impl.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/naive_bayes/nbc_main.cpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/nca/nca_main.cpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/neighbor_search/neighbor_search_rules.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/neighbor_search/neighbor_search_rules_impl.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/neighbor_search/neighbor_search_stat.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/pca/pca.cpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/pca/pca.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/range_search/range_search_impl.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/range_search/range_search_rules.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/range_search/range_search_rules_impl.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/range_search/range_search_stat.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/rann/ra_search_rules.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/rann/ra_typedef.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/tests/cf_test.cpp
   mlpack/branches/mlpack-1.x/src/mlpack/tests/gmm_test.cpp
   mlpack/branches/mlpack-1.x/src/mlpack/tests/kernel_traits_test.cpp
   mlpack/branches/mlpack-1.x/src/mlpack/tests/metric_test.cpp
   mlpack/branches/mlpack-1.x/src/mlpack/tests/range_search_test.cpp

Modified: mlpack/branches/mlpack-1.x/src/mlpack/core/data/normalize_labels.hpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/core/data/normalize_labels.hpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/core/data/normalize_labels.hpp	Fri Oct  4 13:10:00 2013
@@ -5,6 +5,21 @@
  * Often labels are not given as {0, 1, 2, ...} but instead {1, 2, ...} or even
  * {-1, 1} or otherwise.  The purpose of this function is to normalize labels to
  * {0, 1, 2, ...} and provide a mapping back to those labels.
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef __MLPACK_CORE_DATA_NORMALIZE_LABELS_HPP
 #define __MLPACK_CORE_DATA_NORMALIZE_LABELS_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/core/data/normalize_labels_impl.hpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/core/data/normalize_labels_impl.hpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/core/data/normalize_labels_impl.hpp	Fri Oct  4 13:10:00 2013
@@ -4,6 +4,21 @@
  *
  * Implementation of label normalization functions; these are useful for mapping
  * labels to the range [0, n).
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef __MLPACK_CORE_DATA_NORMALIZE_LABELS_IMPL_HPP
 #define __MLPACK_CORE_DATA_NORMALIZE_LABELS_IMPL_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/core/kernels/kernel_traits.hpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/core/kernels/kernel_traits.hpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/core/kernels/kernel_traits.hpp	Fri Oct  4 13:10:00 2013
@@ -4,6 +4,21 @@
  *
  * This provides the KernelTraits class, a template class to get information
  * about various kernels.
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef __MLPACK_CORE_KERNELS_KERNEL_TRAITS_HPP
 #define __MLPACK_CORE_KERNELS_KERNEL_TRAITS_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/core/tree/cover_tree/cover_tree_impl.hpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/core/tree/cover_tree/cover_tree_impl.hpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/core/tree/cover_tree/cover_tree_impl.hpp	Fri Oct  4 13:10:00 2013
@@ -3,6 +3,21 @@
  * @author Ryan Curtin
  *
  * Implementation of CoverTree class.
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef __MLPACK_CORE_TREE_COVER_TREE_COVER_TREE_IMPL_HPP
 #define __MLPACK_CORE_TREE_COVER_TREE_COVER_TREE_IMPL_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/cf/cf.cpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/cf/cf.cpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/cf/cf.cpp	Fri Oct  4 13:10:00 2013
@@ -7,6 +7,20 @@
  * Implementation of CF class to perform Collaborative Filtering on the
  * specified data set.
  *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 #include "cf.hpp"
 #include <mlpack/methods/nmf/nmf.hpp>

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/cf/cf.hpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/cf/cf.hpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/cf/cf.hpp	Fri Oct  4 13:10:00 2013
@@ -6,6 +6,21 @@
  *
  * Defines the CF class to perform collaborative filtering on the specified data
  * set using alternating least squares (ALS).
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef __MLPACK_METHODS_CF_CF_HPP
 #define __MLPACK_METHODS_CF_CF_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/cf/cf_main.cpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/cf/cf_main.cpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/cf/cf_main.cpp	Fri Oct  4 13:10:00 2013
@@ -3,6 +3,21 @@
  * @author Mudit Raj Gupta
  *
  * Main executable to run CF.
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include <mlpack/core.hpp>

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/gmm/diagonal_constraint.hpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/gmm/diagonal_constraint.hpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/gmm/diagonal_constraint.hpp	Fri Oct  4 13:10:00 2013
@@ -3,6 +3,21 @@
  * @author Ryan Curtin
  *
  * Constrain a covariance matrix to be diagonal.
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef __MLPACK_METHODS_GMM_DIAGONAL_CONSTRAINT_HPP
 #define __MLPACK_METHODS_GMM_DIAGONAL_CONSTRAINT_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/gmm/eigenvalue_ratio_constraint.hpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/gmm/eigenvalue_ratio_constraint.hpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/gmm/eigenvalue_ratio_constraint.hpp	Fri Oct  4 13:10:00 2013
@@ -3,6 +3,21 @@
  * @author Ryan Curtin
  *
  * Constrain a covariance matrix to have a certain ratio of eigenvalues.
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef __MLPACK_METHODS_GMM_EIGENVALUE_RATIO_CONSTRAINT_HPP
 #define __MLPACK_METHODS_GMM_EIGENVALUE_RATIO_CONSTRAINT_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/gmm/no_constraint.hpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/gmm/no_constraint.hpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/gmm/no_constraint.hpp	Fri Oct  4 13:10:00 2013
@@ -3,6 +3,21 @@
  * @author Ryan Curtin
  *
  * No constraint on the covariance matrix.
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef __MLPACK_METHODS_GMM_NO_CONSTRAINT_HPP
 #define __MLPACK_METHODS_GMM_NO_CONSTRAINT_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/gmm/positive_definite_constraint.hpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/gmm/positive_definite_constraint.hpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/gmm/positive_definite_constraint.hpp	Fri Oct  4 13:10:00 2013
@@ -3,6 +3,21 @@
  * @author Ryan Curtin
  *
  * Restricts a covariance matrix to being positive definite.
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef __MLPACK_METHODS_GMM_POSITIVE_DEFINITE_CONSTRAINT_HPP
 #define __MLPACK_METHODS_GMM_POSITIVE_DEFINITE_CONSTRAINT_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/kernel_pca/kernel_pca_impl.hpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/kernel_pca/kernel_pca_impl.hpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/kernel_pca/kernel_pca_impl.hpp	Fri Oct  4 13:10:00 2013
@@ -5,6 +5,21 @@
  *
  * Implementation of KernelPCA class to perform Kernel Principal Components
  * Analysis on the specified data set.
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef __MLPACK_METHODS_KERNEL_PCA_KERNEL_PCA_IMPL_HPP
 #define __MLPACK_METHODS_KERNEL_PCA_KERNEL_PCA_IMPL_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/naive_bayes/nbc_main.cpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/naive_bayes/nbc_main.cpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/naive_bayes/nbc_main.cpp	Fri Oct  4 13:10:00 2013
@@ -6,6 +6,21 @@
  *
  * This classifier does parametric naive bayes classification assuming that the
  * features are sampled from a Gaussian distribution.
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 #include <mlpack/core.hpp>
 

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/nca/nca_main.cpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/nca/nca_main.cpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/nca/nca_main.cpp	Fri Oct  4 13:10:00 2013
@@ -3,6 +3,21 @@
  * @author Ryan Curtin
  *
  * Executable for Neighborhood Components Analysis.
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 #include <mlpack/core.hpp>
 #include <mlpack/core/metrics/lmetric.hpp>

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/neighbor_search/neighbor_search_rules.hpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/neighbor_search/neighbor_search_rules.hpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/neighbor_search/neighbor_search_rules.hpp	Fri Oct  4 13:10:00 2013
@@ -4,6 +4,21 @@
  *
  * Defines the pruning rules and base case rules necessary to perform a
  * tree-based search (with an arbitrary tree) for the NeighborSearch class.
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef __MLPACK_METHODS_NEIGHBOR_SEARCH_NEIGHBOR_SEARCH_RULES_HPP
 #define __MLPACK_METHODS_NEIGHBOR_SEARCH_NEIGHBOR_SEARCH_RULES_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/neighbor_search/neighbor_search_rules_impl.hpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/neighbor_search/neighbor_search_rules_impl.hpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/neighbor_search/neighbor_search_rules_impl.hpp	Fri Oct  4 13:10:00 2013
@@ -3,6 +3,21 @@
  * @author Ryan Curtin
  *
  * Implementation of NearestNeighborRules.
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef __MLPACK_METHODS_NEIGHBOR_SEARCH_NEAREST_NEIGHBOR_RULES_IMPL_HPP
 #define __MLPACK_METHODS_NEIGHBOR_SEARCH_NEAREST_NEIGHBOR_RULES_IMPL_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/neighbor_search/neighbor_search_stat.hpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/neighbor_search/neighbor_search_stat.hpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/neighbor_search/neighbor_search_stat.hpp	Fri Oct  4 13:10:00 2013
@@ -4,6 +4,21 @@
  *
  * Defines the NeighborSearch class, which performs an abstract
  * nearest-neighbor-like query on two datasets.
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef __MLPACK_METHODS_NEIGHBOR_SEARCH_NEIGHBOR_SEARCH_STAT_HPP
 #define __MLPACK_METHODS_NEIGHBOR_SEARCH_NEIGHBOR_SEARCH_STAT_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/pca/pca.cpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/pca/pca.cpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/pca/pca.cpp	Fri Oct  4 13:10:00 2013
@@ -4,6 +4,21 @@
  *
  * Implementation of PCA class to perform Principal Components Analysis on the
  * specified data set.
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 #include "pca.hpp"
 #include <mlpack/core.hpp>

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/pca/pca.hpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/pca/pca.hpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/pca/pca.hpp	Fri Oct  4 13:10:00 2013
@@ -4,6 +4,21 @@
  *
  * Defines the PCA class to perform Principal Components Analysis on the
  * specified data set.
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef __MLPACK_METHODS_PCA_PCA_HPP
 #define __MLPACK_METHODS_PCA_PCA_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/range_search/range_search_impl.hpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/range_search/range_search_impl.hpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/range_search/range_search_impl.hpp	Fri Oct  4 13:10:00 2013
@@ -3,6 +3,21 @@
  * @author Ryan Curtin
  *
  * Implementation of the RangeSearch class.
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef __MLPACK_METHODS_RANGE_SEARCH_RANGE_SEARCH_IMPL_HPP
 #define __MLPACK_METHODS_RANGE_SEARCH_RANGE_SEARCH_IMPL_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/range_search/range_search_rules.hpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/range_search/range_search_rules.hpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/range_search/range_search_rules.hpp	Fri Oct  4 13:10:00 2013
@@ -3,6 +3,21 @@
  * @author Ryan Curtin
  *
  * Rules for range search, so that it can be done with arbitrary tree types.
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef __MLPACK_METHODS_RANGE_SEARCH_RANGE_SEARCH_RULES_HPP
 #define __MLPACK_METHODS_RANGE_SEARCH_RANGE_SEARCH_RULES_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/range_search/range_search_rules_impl.hpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/range_search/range_search_rules_impl.hpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/range_search/range_search_rules_impl.hpp	Fri Oct  4 13:10:00 2013
@@ -3,6 +3,21 @@
  * @author Ryan Curtin
  *
  * Implementation of rules for range search with generic trees.
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef __MLPACK_METHODS_RANGE_SEARCH_RANGE_SEARCH_RULES_IMPL_HPP
 #define __MLPACK_METHODS_RANGE_SEARCH_RANGE_SEARCH_RULES_IMPL_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/range_search/range_search_stat.hpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/range_search/range_search_stat.hpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/range_search/range_search_stat.hpp	Fri Oct  4 13:10:00 2013
@@ -4,6 +4,21 @@
  *
  * Statistic class for RangeSearch, which just holds the last visited node and
  * the corresponding base case result.
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef __MLPACK_METHODS_RANGE_SEARCH_RANGE_SEARCH_STAT_HPP
 #define __MLPACK_METHODS_RANGE_SEARCH_RANGE_SEARCH_STAT_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/rann/ra_search_rules.hpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/rann/ra_search_rules.hpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/rann/ra_search_rules.hpp	Fri Oct  4 13:10:00 2013
@@ -5,6 +5,21 @@
  * Defines the pruning rules and base case rules necessary to perform a
  * tree-based rank-approximate search (with an arbitrary tree) for the RASearch
  * class.
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef __MLPACK_METHODS_RANN_RA_SEARCH_RULES_HPP
 #define __MLPACK_METHODS_RANN_RA_SEARCH_RULES_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/rann/ra_typedef.hpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/rann/ra_typedef.hpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/rann/ra_typedef.hpp	Fri Oct  4 13:10:00 2013
@@ -4,6 +4,21 @@
  *
  * Simple typedefs describing template instantiations of the RASearch
  * class which are commonly used.
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef __MLPACK_RANN_RA_TYPEDEF_HPP
 #define __MLPACK_RANN_RA_TYPEDEF_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/tests/cf_test.cpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/tests/cf_test.cpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/tests/cf_test.cpp	Fri Oct  4 13:10:00 2013
@@ -3,6 +3,21 @@
  * @author Mudit Raj Gupta
  *
  * Test file for CF class.
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include <mlpack/core.hpp>

Modified: mlpack/branches/mlpack-1.x/src/mlpack/tests/gmm_test.cpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/tests/gmm_test.cpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/tests/gmm_test.cpp	Fri Oct  4 13:10:00 2013
@@ -3,6 +3,21 @@
  * @author Ryan Curtin
  *
  * Test for the Gaussian Mixture Model class.
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 #include <mlpack/core.hpp>
 

Modified: mlpack/branches/mlpack-1.x/src/mlpack/tests/kernel_traits_test.cpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/tests/kernel_traits_test.cpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/tests/kernel_traits_test.cpp	Fri Oct  4 13:10:00 2013
@@ -5,6 +5,21 @@
  * Test the KernelTraits class.  Because all of the values are known at compile
  * time, this test is meant to ensure that uses of KernelTraits still compile
  * okay and react as expected.
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 #include <mlpack/core.hpp>
 

Modified: mlpack/branches/mlpack-1.x/src/mlpack/tests/metric_test.cpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/tests/metric_test.cpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/tests/metric_test.cpp	Fri Oct  4 13:10:00 2013
@@ -2,6 +2,21 @@
  * @file metric_test.cpp
  *
  * Unit tests for the 'LMetric' class.
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 #include <mlpack/core.hpp>
 #include <mlpack/core/metrics/lmetric.hpp>

Modified: mlpack/branches/mlpack-1.x/src/mlpack/tests/range_search_test.cpp
==============================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/tests/range_search_test.cpp	(original)
+++ mlpack/branches/mlpack-1.x/src/mlpack/tests/range_search_test.cpp	Fri Oct  4 13:10:00 2013
@@ -3,6 +3,21 @@
  * @author Ryan Curtin
  *
  * Test file for RangeSearch<> class.
+ *
+ * This file is part of MLPACK 1.0.6.
+ *
+ * MLPACK is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * MLPACK is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+ * details (LICENSE.txt).
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * MLPACK.  If not, see <http://www.gnu.org/licenses/>.
  */
 #include <mlpack/core.hpp>
 #include <mlpack/methods/range_search/range_search.hpp>



More information about the mlpack-svn mailing list