[mlpack-svn] r14994 - in mlpack/branches/mlpack-1.x/src/mlpack: core/tree core/tree/binary_space_tree core/tree/cover_tree methods/fastmks methods/kmeans methods/lsh methods/neighbor_search methods/rann tests

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Wed May 1 22:50:31 EDT 2013


Author: rcurtin
Date: 2013-05-01 22:50:28 -0400 (Wed, 01 May 2013)
New Revision: 14994

Modified:
   mlpack/branches/mlpack-1.x/src/mlpack/core/tree/binary_space_tree/traits.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/core/tree/cover_tree/traits.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/core/tree/mrkd_statistic.cpp
   mlpack/branches/mlpack-1.x/src/mlpack/core/tree/mrkd_statistic_impl.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/core/tree/tree_traits.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/fastmks.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/fastmks_impl.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/fastmks_main.cpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/fastmks_rules.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/fastmks_rules_impl.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/fastmks_stat.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/ip_metric.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/ip_metric_impl.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/kmeans/refined_start.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/kmeans/refined_start_impl.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/lsh/lsh_search.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/neighbor_search/unmap.cpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/neighbor_search/unmap.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/rann/allkrann_main.cpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/rann/ra_search.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/rann/ra_search_impl.hpp
   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_impl.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/methods/rann/ra_typedef.hpp
   mlpack/branches/mlpack-1.x/src/mlpack/tests/allkrann_search_test.cpp
   mlpack/branches/mlpack-1.x/src/mlpack/tests/arma_extend_test.cpp
   mlpack/branches/mlpack-1.x/src/mlpack/tests/fastmks_test.cpp
   mlpack/branches/mlpack-1.x/src/mlpack/tests/lsh_test.cpp
   mlpack/branches/mlpack-1.x/src/mlpack/tests/tree_traits_test.cpp
Log:
Add license headers to new files.


Modified: mlpack/branches/mlpack-1.x/src/mlpack/core/tree/binary_space_tree/traits.hpp
===================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/core/tree/binary_space_tree/traits.hpp	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/core/tree/binary_space_tree/traits.hpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -3,6 +3,21 @@
  * @author Ryan Curtin
  *
  * Specialization of the TreeTraits class for the BinarySpaceTree type of tree.
+ *
+ * This file is part of MLPACK 1.0.4.
+ *
+ * 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_BINARY_SPACE_TREE_TRAITS_HPP
 #define __MLPACK_CORE_TREE_BINARY_SPACE_TREE_TRAITS_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/core/tree/cover_tree/traits.hpp
===================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/core/tree/cover_tree/traits.hpp	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/core/tree/cover_tree/traits.hpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -4,6 +4,21 @@
  *
  * This file contains the specialization of the TreeTraits class for the
  * CoverTree type of tree.
+ *
+ * This file is part of MLPACK 1.0.4.
+ *
+ * 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_TRAITS_HPP
 #define __MLPACK_CORE_TREE_COVER_TREE_TRAITS_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/core/tree/mrkd_statistic.cpp
===================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/core/tree/mrkd_statistic.cpp	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/core/tree/mrkd_statistic.cpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -3,6 +3,21 @@
  * @author James Cline
  *
  * Definition of the statistic for multi-resolution kd-trees.
+ *
+ * This file is part of MLPACK 1.0.4.
+ *
+ * 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 "mrkd_statistic.hpp"
 

Modified: mlpack/branches/mlpack-1.x/src/mlpack/core/tree/mrkd_statistic_impl.hpp
===================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/core/tree/mrkd_statistic_impl.hpp	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/core/tree/mrkd_statistic_impl.hpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -3,6 +3,21 @@
  * @author James Cline
  *
  * Definition of the statistic for multi-resolution kd-trees.
+ *
+ * This file is part of MLPACK 1.0.4.
+ *
+ * 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_MRKD_STATISTIC_IMPL_HPP
 #define __MLPACK_CORE_TREE_MRKD_STATISTIC_IMPL_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/core/tree/tree_traits.hpp
===================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/core/tree/tree_traits.hpp	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/core/tree/tree_traits.hpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -5,6 +5,21 @@
  * This file implements the basic, unspecialized TreeTraits class, which
  * provides information about tree types.  If you create a tree class, you
  * should specialize this class with the characteristics of your tree.
+ *
+ * This file is part of MLPACK 1.0.4.
+ *
+ * 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_TREE_TRAITS_HPP
 #define __MLPACK_CORE_TREE_TREE_TRAITS_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/fastmks.hpp
===================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/fastmks.hpp	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/fastmks.hpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -4,6 +4,21 @@
  *
  * Definition of the FastMKS class, which implements fast exact max-kernel
  * search.
+ *
+ * This file is part of MLPACK 1.0.4.
+ *
+ * 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_FASTMKS_FASTMKS_HPP
 #define __MLPACK_METHODS_FASTMKS_FASTMKS_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/fastmks_impl.hpp
===================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/fastmks_impl.hpp	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/fastmks_impl.hpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -3,6 +3,21 @@
  * @author Ryan Curtin
  *
  * Implementation of the FastMKS class (fast max-kernel search).
+ *
+ * This file is part of MLPACK 1.0.4.
+ *
+ * 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_FASTMKS_FASTMKS_IMPL_HPP
 #define __MLPACK_METHODS_FASTMKS_FASTMKS_IMPL_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/fastmks_main.cpp
===================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/fastmks_main.cpp	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/fastmks_main.cpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -3,6 +3,21 @@
  * @author Ryan Curtin
  *
  * Main executable for maximum inner product search.
+ *
+ * This file is part of MLPACK 1.0.4.
+ *
+ * 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/kernels/linear_kernel.hpp>

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/fastmks_rules.hpp
===================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/fastmks_rules.hpp	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/fastmks_rules.hpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -3,6 +3,21 @@
  * @author Ryan Curtin
  *
  * Rules for the single or dual tree traversal for fast max-kernel search.
+ *
+ * This file is part of MLPACK 1.0.4.
+ *
+ * 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_FASTMKS_FASTMKS_RULES_HPP
 #define __MLPACK_METHODS_FASTMKS_FASTMKS_RULES_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/fastmks_rules_impl.hpp
===================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/fastmks_rules_impl.hpp	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/fastmks_rules_impl.hpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -3,6 +3,21 @@
  * @author Ryan Curtin
  *
  * Implementation of FastMKSRules for cover tree search.
+ *
+ * This file is part of MLPACK 1.0.4.
+ *
+ * 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_FASTMKS_FASTMKS_RULES_IMPL_HPP
 #define __MLPACK_METHODS_FASTMKS_FASTMKS_RULES_IMPL_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/fastmks_stat.hpp
===================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/fastmks_stat.hpp	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/fastmks_stat.hpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -3,6 +3,21 @@
  * @author Ryan Curtin
  *
  * The statistic used in trees with FastMKS.
+ *
+ * This file is part of MLPACK 1.0.4.
+ *
+ * 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_FASTMKS_FASTMKS_STAT_HPP
 #define __MLPACK_METHODS_FASTMKS_FASTMKS_STAT_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/ip_metric.hpp
===================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/ip_metric.hpp	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/ip_metric.hpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -4,6 +4,21 @@
  *
  * Inner product induced metric.  If given a kernel function, this gives the
  * complementary metric.
+ *
+ * This file is part of MLPACK 1.0.4.
+ *
+ * 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_FASTMKS_IP_METRIC_HPP
 #define __MLPACK_METHODS_FASTMKS_IP_METRIC_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/ip_metric_impl.hpp
===================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/ip_metric_impl.hpp	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/fastmks/ip_metric_impl.hpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -3,6 +3,21 @@
  * @author Ryan Curtin
  *
  * Implementation of the IPMetric.
+ *
+ * This file is part of MLPACK 1.0.4.
+ *
+ * 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_FASTMKS_IP_METRIC_IMPL_HPP
 #define __MLPACK_METHODS_FASTMKS_IP_METRIC_IMPL_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/kmeans/refined_start.hpp
===================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/kmeans/refined_start.hpp	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/kmeans/refined_start.hpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -5,6 +5,21 @@
  * An implementation of Bradley and Fayyad's "Refining Initial Points for
  * K-Means clustering".  This class is meant to provide better initial points
  * for the k-means algorithm.
+ *
+ * This file is part of MLPACK 1.0.4.
+ *
+ * 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_KMEANS_REFINED_START_HPP
 #define __MLPACK_METHODS_KMEANS_REFINED_START_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/kmeans/refined_start_impl.hpp
===================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/kmeans/refined_start_impl.hpp	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/kmeans/refined_start_impl.hpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -5,6 +5,21 @@
  * An implementation of Bradley and Fayyad's "Refining Initial Points for
  * K-Means clustering".  This class is meant to provide better initial points
  * for the k-means algorithm.
+ *
+ * This file is part of MLPACK 1.0.4.
+ *
+ * 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_KMEANS_REFINED_START_IMPL_HPP
 #define __MLPACK_METHODS_KMEANS_REFINED_START_IMPL_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/lsh/lsh_search.hpp
===================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/lsh/lsh_search.hpp	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/lsh/lsh_search.hpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -19,7 +19,6 @@
  *  organization={ACM}
  * }
  *
- *
  * This file is part of MLPACK 1.0.4.
  *
  * MLPACK is free software: you can redistribute it and/or modify it under the

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/neighbor_search/unmap.cpp
===================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/neighbor_search/unmap.cpp	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/neighbor_search/unmap.cpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -3,6 +3,21 @@
  * @author Ryan Curtin
  *
  * Auxiliary function to unmap neighbor search results.
+ *
+ * This file is part of MLPACK 1.0.4.
+ *
+ * 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 "unmap.hpp"
 

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/neighbor_search/unmap.hpp
===================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/neighbor_search/unmap.hpp	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/neighbor_search/unmap.hpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -3,6 +3,21 @@
  * @author Ryan Curtin
  *
  * Convenience methods to unmap results.
+ *
+ * This file is part of MLPACK 1.0.4.
+ *
+ * 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_UNMAP_HPP
 #define __MLPACK_METHODS_NEIGHBOR_SEARCH_UNMAP_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/rann/allkrann_main.cpp
===================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/rann/allkrann_main.cpp	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/rann/allkrann_main.cpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -4,6 +4,21 @@
  *
  * Implementation of the AllkRANN executable.  Allows some number of standard
  * options.
+ *
+ * This file is part of MLPACK 1.0.4.
+ *
+ * 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 <time.h>
 

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/rann/ra_search.hpp
===================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/rann/ra_search.hpp	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/rann/ra_search.hpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -14,6 +14,21 @@
  *   booktitle={{Advances of Neural Information Processing Systems}},
  *   year={2009}
  * }
+ *
+ * This file is part of MLPACK 1.0.4.
+ *
+ * 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_RA_SEARCH_HPP
 #define __MLPACK_METHODS_NEIGHBOR_SEARCH_RA_SEARCH_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/rann/ra_search_impl.hpp
===================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/rann/ra_search_impl.hpp	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/rann/ra_search_impl.hpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -4,6 +4,21 @@
  *
  * Implementation of RASearch class to perform rank-approximate
  * all-nearest-neighbors on two specified data sets.
+ *
+ * This file is part of MLPACK 1.0.4.
+ *
+ * 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_RA_SEARCH_IMPL_HPP
 #define __MLPACK_METHODS_NEIGHBOR_SEARCH_RA_SEARCH_IMPL_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	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/rann/ra_search_rules.hpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -4,7 +4,22 @@
  *
  * 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. 
+ * for the RASearch class.
+ *
+ * This file is part of MLPACK 1.0.4.
+ *
+ * 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_RA_SEARCH_RULES_HPP
 #define __MLPACK_METHODS_NEIGHBOR_SEARCH_RA_SEARCH_RULES_HPP

Modified: mlpack/branches/mlpack-1.x/src/mlpack/methods/rann/ra_search_rules_impl.hpp
===================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/methods/rann/ra_search_rules_impl.hpp	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/rann/ra_search_rules_impl.hpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -3,6 +3,21 @@
  * @author Parikshit Ram
  *
  * Implementation of RASearchRules.
+ *
+ * This file is part of MLPACK 1.0.4.
+ *
+ * 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_RA_SEARCH_RULES_IMPL_HPP
 #define __MLPACK_METHODS_NEIGHBOR_SEARCH_RA_SEARCH_RULES_IMPL_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	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/methods/rann/ra_typedef.hpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -3,7 +3,22 @@
  * @author Parikshit Ram
  *
  * Simple typedefs describing template instantiations of the RASearch
- * class which are commonly used. 
+ * class which are commonly used.
+ *
+ * This file is part of MLPACK 1.0.4.
+ *
+ * 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_NEIGHBOR_SEARCH_RA_TYPEDEF_H
 #define __MLPACK_NEIGHBOR_SEARCH_RA_TYPEDEF_H

Modified: mlpack/branches/mlpack-1.x/src/mlpack/tests/allkrann_search_test.cpp
===================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/tests/allkrann_search_test.cpp	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/tests/allkrann_search_test.cpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -1,8 +1,23 @@
 /**
  * @file allkrann_search_test.cpp
  *
- * Unit tests for the 'RASearch' class and consequently the
- * 'RASearchRules' class
+ * Unit tests for the 'RASearch' class and consequently the 'RASearchRules'
+ * class.
+ *
+ * This file is part of MLPACK 1.0.4.
+ *
+ * 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 <time.h>
 #include <mlpack/core.hpp>

Modified: mlpack/branches/mlpack-1.x/src/mlpack/tests/arma_extend_test.cpp
===================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/tests/arma_extend_test.cpp	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/tests/arma_extend_test.cpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -3,6 +3,21 @@
  * @author Ryan Curtin
  *
  * Test of the MLPACK extensions to Armadillo.
+ *
+ * This file is part of MLPACK 1.0.4.
+ *
+ * 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/fastmks_test.cpp
===================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/tests/fastmks_test.cpp	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/tests/fastmks_test.cpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -3,6 +3,21 @@
  * @author Ryan Curtin
  *
  * Ensure that fast max-kernel search is correct.
+ *
+ * This file is part of MLPACK 1.0.4.
+ *
+ * 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/fastmks/fastmks.hpp>

Modified: mlpack/branches/mlpack-1.x/src/mlpack/tests/lsh_test.cpp
===================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/tests/lsh_test.cpp	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/tests/lsh_test.cpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -2,6 +2,21 @@
  * @file lsh_test.cpp
  *
  * Unit tests for the 'LSHSearch' class.
+ *
+ * This file is part of MLPACK 1.0.4.
+ *
+ * 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/tree_traits_test.cpp
===================================================================
--- mlpack/branches/mlpack-1.x/src/mlpack/tests/tree_traits_test.cpp	2013-05-02 02:38:08 UTC (rev 14993)
+++ mlpack/branches/mlpack-1.x/src/mlpack/tests/tree_traits_test.cpp	2013-05-02 02:50:28 UTC (rev 14994)
@@ -7,6 +7,21 @@
  * without breaking something.  Thus, people must be certain when they make a
  * change like that (because they have to change the test too).  That's the
  * hope, at least...
+ *
+ * This file is part of MLPACK 1.0.4.
+ *
+ * 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/tree/tree_traits.hpp>




More information about the mlpack-svn mailing list