NNetCpp
Neural network implementation in C++
 All Classes Namespaces Functions Variables
InputNode.h
1 #ifndef INPUT_NODE_H
2 #define INPUT_NODE_H
3 
4 #include "Node.h"
5 
9 class InputNode: public Node {
10  private:
11  double value = 0;
12 
13  public:
17  InputNode();
18 
24  InputNode(double value);
25 
31  double getOutput();
32 
38  void setValue(double value);
39 };
40 
41 #endif // INPUT_NODE_H
Definition: Node.h:7
Definition: InputNode.h:9
InputNode()
Definition: InputNode.cpp:3
double getOutput()
Definition: InputNode.cpp:7
void setValue(double value)
Definition: InputNode.cpp:12