[mlpack-git] master: Update links to Github. (8732174)

gitdub at big.cc.gt.atl.ga.us gitdub at big.cc.gt.atl.ga.us
Sat Apr 11 20:59:03 EDT 2015


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

On branch  : master
Link       : https://github.com/mlpack/mlpack/compare/a7fecec54b8437ccf34e0f9d5ec13ebbd943bca1...8732174b48830f462a9a1e166128ec17cf17db8b

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

commit 8732174b48830f462a9a1e166128ec17cf17db8b
Author: Ryan Curtin <ryan at ratml.org>
Date:   Sat Apr 11 20:57:22 2015 -0400

    Update links to Github.


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

8732174b48830f462a9a1e166128ec17cf17db8b
 src/mlpack/core/util/cli.hpp | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/src/mlpack/core/util/cli.hpp b/src/mlpack/core/util/cli.hpp
index 18e2a95..ab6d2dc 100644
--- a/src/mlpack/core/util/cli.hpp
+++ b/src/mlpack/core/util/cli.hpp
@@ -54,7 +54,7 @@
  * compilers have this support--most notably, gcc < 4.3. In that case, the
  * __LINE__ macro is used as an attempt to get a unique global identifier, but
  * collisions are still possible, and they produce bizarre error messages.  See
- * http://mlpack.org/trac/ticket/74 for more information.
+ * https://github.com/mlpack/mlpack/issues/100 for more information.
  */
 #define PARAM_FLAG(ID, DESC, ALIAS) \
     PARAM_FLAG_INTERNAL(ID, DESC, ALIAS);
@@ -78,7 +78,7 @@
  * compilers have this support--most notably, gcc < 4.3. In that case, the
  * __LINE__ macro is used as an attempt to get a unique global identifier, but
  * collisions are still possible, and they produce bizarre error messages.  See
- * http://mlpack.org/trac/ticket/74 for more information.
+ * https://github.com/mlpack/mlpack/issues/100 for more information.
  */
 #define PARAM_INT(ID, DESC, ALIAS, DEF) \
     PARAM(int, ID, DESC, ALIAS, DEF, false)
@@ -102,7 +102,7 @@
  * compilers have this support--most notably, gcc < 4.3. In that case, the
  * __LINE__ macro is used as an attempt to get a unique global identifier, but
  * collisions are still possible, and they produce bizarre error messages.  See
- * http://mlpack.org/trac/ticket/74 for more information.
+ * https://github.com/mlpack/mlpack/issues/100 for more information.
  */
 #define PARAM_FLOAT(ID, DESC, ALIAS, DEF) \
     PARAM(float, ID, DESC, ALIAS, DEF, false)
@@ -126,7 +126,7 @@
  * compilers have this support--most notably, gcc < 4.3. In that case, the
  * __LINE__ macro is used as an attempt to get a unique global identifier, but
  * collisions are still possible, and they produce bizarre error messages.  See
- * http://mlpack.org/trac/ticket/74 for more information.
+ * https://github.com/mlpack/mlpack/issues/100 for more information.
  */
 #define PARAM_DOUBLE(ID, DESC, ALIAS, DEF) \
     PARAM(double, ID, DESC, ALIAS, DEF, false)
@@ -151,7 +151,7 @@
  * compilers have this support--most notably, gcc < 4.3. In that case, the
  * __LINE__ macro is used as an attempt to get a unique global identifier, but
  * collisions are still possible, and they produce bizarre error messages.  See
- * http://mlpack.org/trac/ticket/74 for more information.
+ * https://github.com/mlpack/mlpack/issues/100 for more information.
  */
 #define PARAM_STRING(ID, DESC, ALIAS, DEF) \
     PARAM(std::string, ID, DESC, ALIAS, DEF, false)
@@ -175,7 +175,7 @@
  * compilers have this support--most notably, gcc < 4.3. In that case, the
  * __LINE__ macro is used as an attempt to get a unique global identifier, but
  * collisions are still possible, and they produce bizarre error messages.  See
- * http://mlpack.org/trac/ticket/74 for more information.
+ * https://github.com/mlpack/mlpack/issues/100 for more information.
  */
 #define PARAM_VECTOR(T, ID, DESC, ALIAS) \
     PARAM(std::vector<T>, ID, DESC, ALIAS, std::vector<T>(), false)
@@ -200,7 +200,7 @@
  * compilers have this support--most notably, gcc < 4.3. In that case, the
  * __LINE__ macro is used as an attempt to get a unique global identifier, but
  * collisions are still possible, and they produce bizarre error messages.  See
- * http://mlpack.org/trac/ticket/74 for more information.
+ * https://github.com/mlpack/mlpack/issues/100 for more information.
  */
 #define PARAM_INT_REQ(ID, DESC, ALIAS) PARAM(int, ID, DESC, ALIAS, 0, true)
 
@@ -224,7 +224,7 @@
  * compilers have this support--most notably, gcc < 4.3. In that case, the
  * __LINE__ macro is used as an attempt to get a unique global identifier, but
  * collisions are still possible, and they produce bizarre error messages.  See
- * http://mlpack.org/trac/ticket/74 for more information.
+ * https://github.com/mlpack/mlpack/issues/100 for more information.
  */
 #define PARAM_FLOAT_REQ(ID, DESC, ALIAS) PARAM(float, ID, DESC, ALIAS, 0.0f, \
     true)
@@ -247,7 +247,7 @@
  * compilers have this support--most notably, gcc < 4.3. In that case, the
  * __LINE__ macro is used as an attempt to get a unique global identifier, but
  * collisions are still possible, and they produce bizarre error messages.  See
- * http://mlpack.org/trac/ticket/74 for more information.
+ * https://github.com/mlpack/mlpack/issues/100 for more information.
  */
 #define PARAM_DOUBLE_REQ(ID, DESC, ALIAS) PARAM(double, ID, DESC, ALIAS, \
     0.0f, true)
@@ -270,7 +270,7 @@
  * compilers have this support--most notably, gcc < 4.3. In that case, the
  * __LINE__ macro is used as an attempt to get a unique global identifier, but
  * collisions are still possible, and they produce bizarre error messages.  See
- * http://mlpack.org/trac/ticket/74 for more information.
+ * https://github.com/mlpack/mlpack/issues/100 for more information.
  */
 #define PARAM_STRING_REQ(ID, DESC, ALIAS) PARAM(std::string, ID, DESC, \
     ALIAS, "", true);
@@ -293,7 +293,7 @@
  * compilers have this support--most notably, gcc < 4.3. In that case, the
  * __LINE__ macro is used as an attempt to get a unique global identifier, but
  * collisions are still possible, and they produce bizarre error messages.  See
- * http://mlpack.org/trac/ticket/74 for more information.
+ * https://github.com/mlpack/mlpack/issues/100 for more information.
  */
 #define PARAM_VECTOR_REQ(T, ID, DESC, ALIAS) PARAM(std::vector<T>, ID, DESC, \
     ALIAS, std::vector<T>(), true);
@@ -511,7 +511,7 @@ struct ParamData
  * compilers have this support--most notably, gcc < 4.3.  In that case, the
  * __LINE__ macro is used as an attempt to get a unique global identifier, but
  * collisions are still possible, and they produce bizarre error messages. See
- * http://mlpack.org/trac/ticket/74 for more information.
+ * https://github.com/mlpack/mlpack/issues/100 for more information.
  */
 class CLI
 {



More information about the mlpack-git mailing list