PetaVision  Alpha
GapConn.cpp
1 /*
2  * GapConn.cpp
3  *
4  * Created on: Aug 2, 2011
5  * Author: garkenyon
6  */
7 
8 #include "GapConn.hpp"
9 
10 namespace PV {
11 
12 // GapConn was made obsolete Sept 25, 2017. All the gap-specific functionality is in LIFGap,
13 // so using a HyPerConn with channelCode set to 3 gives equivalent behavior; although
14 // there are no warnings if you set sharedFlag to false or normalizeWeights to something
15 // other than normalizeSum.
16 GapConn::GapConn(const char *name, HyPerCol *hc) {
17  Fatal() << "GapConn has been eliminated. Use a HyPerConn with channelCode set to 3.\n";
18 }
19 
20 GapConn::~GapConn() {}
21 
22 } /* namespace PV */