forked from Conedy/Conedy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfullNetworkWithNodes.cpp
More file actions
41 lines (29 loc) · 942 Bytes
/
fullNetworkWithNodes.cpp
File metadata and controls
41 lines (29 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include "fullNetworkWithNodes.h"
using namespace conedy;
void registerStandards()
{
stdSdeIntegrator::registerStandardValues();
pcoBase::registerStandardValues();
// containerNode<baseType, 0>::registerStandardValues();
dynNetwork::registerStandardValues();
// createNetwork::registerStandardValues();
escapeNoiseNeuron::registerStandardValues();
#ifdef DOUBLE
gslOdeNode::registerStandardValues();
#endif
#ifdef LDOUBLE
stdOdeIntegrator::registerStandardValues();
#endif
network::registerStandardValues();
pcoDelay::registerStandardValues();
// pulseCoupledExcitatoryNeuron::registerStandardValues();
// sigEdgeParams::registerStandardValues();
streamInNode::registerStandardValues();
streamOutNode::registerStandardValues();
streamOutNodeHist::registerStandardValues();
//sdeNode::registerStandardValues();
#if OPENGL
GLNetwork<baseType>::registerStandardValues();
#endif
#include "generatedRegisterStandards.h"
}