-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNodeActivationState.h
39 lines (27 loc) · 970 Bytes
/
NodeActivationState.h
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
39
#ifndef NODEACTIVATIONSTATE_H
#define NODEACTIVATIONSTATE_H
#include "ANNLAB.h"
using namespace std;
class NodeActivationState
{
public:
// Basic class constructors and destructors
//--------------------------------------------------------------------------
// Constructor
NodeActivationState();
// Destructor
~NodeActivationState();
// Copy constructor
NodeActivationState(const NodeActivationState& OriginalNodeActivationState);
// Copy assignment operator
NodeActivationState& operator= (const NodeActivationState&);
// Move constructor
NodeActivationState (NodeActivationState&& OriginalNodeActivationState);
// Move assignment operator
NodeActivationState& operator= (NodeActivationState&);
//--------------------------------------------------------------------------
string ResponseType;
int BinaryResponse = 0;
double ContinuousResponse = 0.0;
};
#endif // NODEACTIVATIONSTATE_H