From 02dbca40d2bea1f8b464bc87df6116cc83a007b7 Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Tue, 7 Apr 2020 09:17:04 -0400 Subject: [PATCH] Add missing licenses. --- src/mlpack/bindings/julia/get_julia_type.hpp | 5 +++++ src/mlpack/bindings/julia/get_printable_type.hpp | 5 +++++ src/mlpack/bindings/julia/get_printable_type_impl.hpp | 5 +++++ src/mlpack/bindings/julia/julia_util.cpp | 5 +++++ src/mlpack/bindings/julia/print_doc.hpp | 5 +++++ src/mlpack/bindings/julia/print_input_param.hpp | 5 +++++ src/mlpack/bindings/julia/print_input_processing.hpp | 5 +++++ src/mlpack/bindings/julia/print_input_processing_impl.hpp | 5 +++++ src/mlpack/bindings/julia/print_jl.cpp | 5 +++++ src/mlpack/bindings/julia/print_jl.hpp | 5 +++++ src/mlpack/bindings/julia/print_output_processing.hpp | 5 +++++ src/mlpack/bindings/julia/print_output_processing_impl.hpp | 5 +++++ src/mlpack/bindings/julia/print_param_defn.hpp | 5 +++++ src/mlpack/bindings/julia/strip_type.hpp | 5 +++++ src/mlpack/core/data/load_image.cpp | 5 +++++ src/mlpack/core/data/save_image.cpp | 5 +++++ 16 files changed, 80 insertions(+) diff --git a/src/mlpack/bindings/julia/get_julia_type.hpp b/src/mlpack/bindings/julia/get_julia_type.hpp index 096c420ab9..d320494ba2 100644 --- a/src/mlpack/bindings/julia/get_julia_type.hpp +++ b/src/mlpack/bindings/julia/get_julia_type.hpp @@ -3,6 +3,11 @@ * @author Ryan Curtin * * Get the Julia-named type of an mlpack C++ type. + * + * mlpack is free software; you may redistribute it and/or modify it under the + * terms of the 3-clause BSD license. You should have received a copy of the + * 3-clause BSD license along with mlpack. If not, see + * http://www.opensource.org/licenses/BSD-3-Clause for more information. */ #ifndef MLPACK_BINDINGS_JULIA_GET_JULIA_TYPE_HPP #define MLPACK_BINDINGS_JULIA_GET_JULIA_TYPE_HPP diff --git a/src/mlpack/bindings/julia/get_printable_type.hpp b/src/mlpack/bindings/julia/get_printable_type.hpp index 53747acdf1..c353497349 100644 --- a/src/mlpack/bindings/julia/get_printable_type.hpp +++ b/src/mlpack/bindings/julia/get_printable_type.hpp @@ -4,6 +4,11 @@ * * Get the printable type of a parameter. This type is not the C++ type but * instead the Julia type that a user would use. + * + * mlpack is free software; you may redistribute it and/or modify it under the + * terms of the 3-clause BSD license. You should have received a copy of the + * 3-clause BSD license along with mlpack. If not, see + * http://www.opensource.org/licenses/BSD-3-Clause for more information. */ #ifndef MLPACK_BINDINGS_JULIA_GET_PRINTABLE_TYPE_HPP #define MLPACK_BINDINGS_JULIA_GET_PRINTABLE_TYPE_HPP diff --git a/src/mlpack/bindings/julia/get_printable_type_impl.hpp b/src/mlpack/bindings/julia/get_printable_type_impl.hpp index 524fe62a0b..2df1a753ec 100644 --- a/src/mlpack/bindings/julia/get_printable_type_impl.hpp +++ b/src/mlpack/bindings/julia/get_printable_type_impl.hpp @@ -4,6 +4,11 @@ * * Get the printable type of a parameter. This type is not the C++ type but * instead the Julia type that a user would use. + * + * mlpack is free software; you may redistribute it and/or modify it under the + * terms of the 3-clause BSD license. You should have received a copy of the + * 3-clause BSD license along with mlpack. If not, see + * http://www.opensource.org/licenses/BSD-3-Clause for more information. */ #ifndef MLPACK_BINDINGS_JULIA_GET_PRINTABLE_TYPE_IMPL_HPP #define MLPACK_BINDINGS_JULIA_GET_PRINTABLE_TYPE_IMPL_HPP diff --git a/src/mlpack/bindings/julia/julia_util.cpp b/src/mlpack/bindings/julia/julia_util.cpp index faa639956f..ee3bf70681 100644 --- a/src/mlpack/bindings/julia/julia_util.cpp +++ b/src/mlpack/bindings/julia/julia_util.cpp @@ -3,6 +3,11 @@ * @author Ryan Curtin * * Implementations of Julia binding functionality. + * + * mlpack is free software; you may redistribute it and/or modify it under the + * terms of the 3-clause BSD license. You should have received a copy of the + * 3-clause BSD license along with mlpack. If not, see + * http://www.opensource.org/licenses/BSD-3-Clause for more information. */ #include #include diff --git a/src/mlpack/bindings/julia/print_doc.hpp b/src/mlpack/bindings/julia/print_doc.hpp index 522ea3576b..62a8acdde8 100644 --- a/src/mlpack/bindings/julia/print_doc.hpp +++ b/src/mlpack/bindings/julia/print_doc.hpp @@ -3,6 +3,11 @@ * @author Ryan Curtin * * Print inline documentation for a single option. + * + * mlpack is free software; you may redistribute it and/or modify it under the + * terms of the 3-clause BSD license. You should have received a copy of the + * 3-clause BSD license along with mlpack. If not, see + * http://www.opensource.org/licenses/BSD-3-Clause for more information. */ #ifndef MLPACK_BINDINGS_JULIA_PRINT_DOC_HPP #define MLPACK_BINDINGS_JULIA_PRINT_DOC_HPP diff --git a/src/mlpack/bindings/julia/print_input_param.hpp b/src/mlpack/bindings/julia/print_input_param.hpp index a76ba172a3..9f7ad35285 100644 --- a/src/mlpack/bindings/julia/print_input_param.hpp +++ b/src/mlpack/bindings/julia/print_input_param.hpp @@ -4,6 +4,11 @@ * * Print the declaration of an input parameter as part of a line in a Julia * function definition. + * + * mlpack is free software; you may redistribute it and/or modify it under the + * terms of the 3-clause BSD license. You should have received a copy of the + * 3-clause BSD license along with mlpack. If not, see + * http://www.opensource.org/licenses/BSD-3-Clause for more information. */ #ifndef MLPACK_BINDINGS_JULIA_PRINT_INPUT_PARAM_HPP #define MLPACK_BINDINGS_JULIA_PRINT_INPUT_PARAM_HPP diff --git a/src/mlpack/bindings/julia/print_input_processing.hpp b/src/mlpack/bindings/julia/print_input_processing.hpp index a5ae2412bf..317c796d65 100644 --- a/src/mlpack/bindings/julia/print_input_processing.hpp +++ b/src/mlpack/bindings/julia/print_input_processing.hpp @@ -3,6 +3,11 @@ * @author Ryan Curtin * * Print Julia code to handle input arguments. + * + * mlpack is free software; you may redistribute it and/or modify it under the + * terms of the 3-clause BSD license. You should have received a copy of the + * 3-clause BSD license along with mlpack. If not, see + * http://www.opensource.org/licenses/BSD-3-Clause for more information. */ #ifndef MLPACK_BINDINGS_JULIA_PRINT_INPUT_PROCESSING_HPP #define MLPACK_BINDINGS_JULIA_PRINT_INPUT_PROCESSING_HPP diff --git a/src/mlpack/bindings/julia/print_input_processing_impl.hpp b/src/mlpack/bindings/julia/print_input_processing_impl.hpp index 6839abf29d..cd71693f3e 100644 --- a/src/mlpack/bindings/julia/print_input_processing_impl.hpp +++ b/src/mlpack/bindings/julia/print_input_processing_impl.hpp @@ -3,6 +3,11 @@ * @author Ryan Curtin * * Print Julia code to handle input arguments. + * + * mlpack is free software; you may redistribute it and/or modify it under the + * terms of the 3-clause BSD license. You should have received a copy of the + * 3-clause BSD license along with mlpack. If not, see + * http://www.opensource.org/licenses/BSD-3-Clause for more information. */ #ifndef MLPACK_BINDINGS_JULIA_PRINT_INPUT_PROCESSING_IMPL_HPP #define MLPACK_BINDINGS_JULIA_PRINT_INPUT_PROCESSING_IMPL_HPP diff --git a/src/mlpack/bindings/julia/print_jl.cpp b/src/mlpack/bindings/julia/print_jl.cpp index 7f4fb86a02..23d0b5ee0e 100644 --- a/src/mlpack/bindings/julia/print_jl.cpp +++ b/src/mlpack/bindings/julia/print_jl.cpp @@ -3,6 +3,11 @@ * @author Ryan Curtin * * Implementation of utility PrintJL() function. + * + * mlpack is free software; you may redistribute it and/or modify it under the + * terms of the 3-clause BSD license. You should have received a copy of the + * 3-clause BSD license along with mlpack. If not, see + * http://www.opensource.org/licenses/BSD-3-Clause for more information. */ #include "print_jl.hpp" #include diff --git a/src/mlpack/bindings/julia/print_jl.hpp b/src/mlpack/bindings/julia/print_jl.hpp index 6b07dd7e3b..e712fc0a3c 100644 --- a/src/mlpack/bindings/julia/print_jl.hpp +++ b/src/mlpack/bindings/julia/print_jl.hpp @@ -3,6 +3,11 @@ * @author Ryan Curtin * * Definition of utility PrintJL() function. + * + * mlpack is free software; you may redistribute it and/or modify it under the + * terms of the 3-clause BSD license. You should have received a copy of the + * 3-clause BSD license along with mlpack. If not, see + * http://www.opensource.org/licenses/BSD-3-Clause for more information. */ #ifndef MLPACK_BINDINGS_JULIA_PRINT_JL_HPP #define MLPACK_BINDINGS_JULIA_PRINT_JL_HPP diff --git a/src/mlpack/bindings/julia/print_output_processing.hpp b/src/mlpack/bindings/julia/print_output_processing.hpp index 069b344b6e..6426eb293d 100644 --- a/src/mlpack/bindings/julia/print_output_processing.hpp +++ b/src/mlpack/bindings/julia/print_output_processing.hpp @@ -3,6 +3,11 @@ * @author Ryan Curtin * * Print Julia code to handle output arguments. + * + * mlpack is free software; you may redistribute it and/or modify it under the + * terms of the 3-clause BSD license. You should have received a copy of the + * 3-clause BSD license along with mlpack. If not, see + * http://www.opensource.org/licenses/BSD-3-Clause for more information. */ #ifndef MLPACK_BINDINGS_JULIA_PRINT_OUTPUT_PROCESSING_HPP #define MLPACK_BINDINGS_JULIA_PRINT_OUTPUT_PROCESSING_HPP diff --git a/src/mlpack/bindings/julia/print_output_processing_impl.hpp b/src/mlpack/bindings/julia/print_output_processing_impl.hpp index 407eb5b657..058bae5b87 100644 --- a/src/mlpack/bindings/julia/print_output_processing_impl.hpp +++ b/src/mlpack/bindings/julia/print_output_processing_impl.hpp @@ -3,6 +3,11 @@ * @author Ryan Curtin * * Print Julia code to handle output arguments. + * + * mlpack is free software; you may redistribute it and/or modify it under the + * terms of the 3-clause BSD license. You should have received a copy of the + * 3-clause BSD license along with mlpack. If not, see + * http://www.opensource.org/licenses/BSD-3-Clause for more information. */ #ifndef MLPACK_BINDINGS_JULIA_PRINT_OUTPUT_PROCESSING_IMPL_HPP #define MLPACK_BINDINGS_JULIA_PRINT_OUTPUT_PROCESSING_IMPL_HPP diff --git a/src/mlpack/bindings/julia/print_param_defn.hpp b/src/mlpack/bindings/julia/print_param_defn.hpp index 46dc604a2c..84e482431a 100644 --- a/src/mlpack/bindings/julia/print_param_defn.hpp +++ b/src/mlpack/bindings/julia/print_param_defn.hpp @@ -4,6 +4,11 @@ * * If the type is serializable, we need to define a special utility function to * set a CLI parameter of that type. + * + * mlpack is free software; you may redistribute it and/or modify it under the + * terms of the 3-clause BSD license. You should have received a copy of the + * 3-clause BSD license along with mlpack. If not, see + * http://www.opensource.org/licenses/BSD-3-Clause for more information. */ #ifndef MLPACK_BINDINGS_JULIA_PRINT_PARAM_DEFN_HPP #define MLPACK_BINDINGS_JULIA_PRINT_PARAM_DEFN_HPP diff --git a/src/mlpack/bindings/julia/strip_type.hpp b/src/mlpack/bindings/julia/strip_type.hpp index 3a2a179ac1..087e74e940 100644 --- a/src/mlpack/bindings/julia/strip_type.hpp +++ b/src/mlpack/bindings/julia/strip_type.hpp @@ -4,6 +4,11 @@ * * Given a C++ type name, turn it into something that has no special characters * that can simply be printed. + * + * mlpack is free software; you may redistribute it and/or modify it under the + * terms of the 3-clause BSD license. You should have received a copy of the + * 3-clause BSD license along with mlpack. If not, see + * http://www.opensource.org/licenses/BSD-3-Clause for more information. */ #ifndef MLPACK_BINDINGS_JULIA_STRIP_TYPE_HPP #define MLPACK_BINDINGS_JULIA_STRIP_TYPE_HPP diff --git a/src/mlpack/core/data/load_image.cpp b/src/mlpack/core/data/load_image.cpp index 649ebde9cb..7801a6d07a 100644 --- a/src/mlpack/core/data/load_image.cpp +++ b/src/mlpack/core/data/load_image.cpp @@ -3,6 +3,11 @@ * @author Mehul Kumar Nirala * * Implementation of image loading functionality via STB. + * + * mlpack is free software; you may redistribute it and/or modify it under the + * terms of the 3-clause BSD license. You should have received a copy of the + * 3-clause BSD license along with mlpack. If not, see + * http://www.opensource.org/licenses/BSD-3-Clause for more information. */ #include "load.hpp" #include "image_info.hpp" diff --git a/src/mlpack/core/data/save_image.cpp b/src/mlpack/core/data/save_image.cpp index b03063c944..abc8b701e9 100644 --- a/src/mlpack/core/data/save_image.cpp +++ b/src/mlpack/core/data/save_image.cpp @@ -3,6 +3,11 @@ * @author Mehul Kumar Nirala * * Implementation of image saving functionality via STB. + * + * mlpack is free software; you may redistribute it and/or modify it under the + * terms of the 3-clause BSD license. You should have received a copy of the + * 3-clause BSD license along with mlpack. If not, see + * http://www.opensource.org/licenses/BSD-3-Clause for more information. */ #include "save.hpp"