[mlpack-git] master: Update the all connection traits; including the self and fullself connection. (6de6a0b)

gitdub at big.cc.gt.atl.ga.us gitdub at big.cc.gt.atl.ga.us
Wed Jul 1 16:29:37 EDT 2015


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

On branch  : master
Link       : https://github.com/mlpack/mlpack/compare/cf08dc96724f70468c8e31ced1761ed000b55b18...222a7e191f8a7925a4870ce1acbd68589899dfde

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

commit 6de6a0b00f6de5256b19f9befcf6c860e13ca5bc
Author: Marcus Edel <marcus.edel at fu-berlin.de>
Date:   Tue Jun 30 14:30:04 2015 +0200

    Update the all connection traits; including the self and fullself connection.


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

6de6a0b00f6de5256b19f9befcf6c860e13ca5bc
 src/mlpack/methods/ann/connections/fullself_connection.hpp | 1 +
 src/mlpack/methods/ann/connections/self_connection.hpp     | 1 +
 2 files changed, 2 insertions(+)

diff --git a/src/mlpack/methods/ann/connections/fullself_connection.hpp b/src/mlpack/methods/ann/connections/fullself_connection.hpp
index fc8da6e..67cf747 100644
--- a/src/mlpack/methods/ann/connections/fullself_connection.hpp
+++ b/src/mlpack/methods/ann/connections/fullself_connection.hpp
@@ -217,6 +217,7 @@ class ConnectionTraits<
   static const bool IsSelfConnection = false;
   static const bool IsFullselfConnection = true;
   static const bool IsPoolingConnection = false;
+  static const bool IsIdentityConnection = false;
 };
 
 }; // namespace ann
diff --git a/src/mlpack/methods/ann/connections/self_connection.hpp b/src/mlpack/methods/ann/connections/self_connection.hpp
index 0300eb0..3c0ccc0 100644
--- a/src/mlpack/methods/ann/connections/self_connection.hpp
+++ b/src/mlpack/methods/ann/connections/self_connection.hpp
@@ -222,6 +222,7 @@ class ConnectionTraits<
   static const bool IsSelfConnection = true;
   static const bool IsFullselfConnection = false;
   static const bool IsPoolingConnection = false;
+  static const bool IsIdentityConnection = false;
 };
 
 }; // namespace ann



More information about the mlpack-git mailing list