NNetCpp
Neural network implementation in C++
 All Classes Namespaces Functions Variables
ConstantWeightGenerator.h
1 #ifndef CONSTANT_WEIGHT_GENERATOR_H
2 #define CONSTANT_WEIGHT_GENERATOR_H
3 
4 #include "WeightGenerator.h"
5 
10  private:
11  double weight;
12 
13  public:
19  ConstantWeightGenerator(double weight);
20 
26  double getWeight();
27 };
28 
29 #endif // CONSTANT_WEIGHT_GENERATOR_H
Definition: WeightGenerator.h:7
ConstantWeightGenerator(double weight)
Definition: ConstantWeightGenerator.cpp:3
double getWeight()
Definition: ConstantWeightGenerator.cpp:5
Definition: ConstantWeightGenerator.h:9