Graine
Génération procédurale de créatures et apprentissage par réseaux de neurones.
OutputFeature.hpp
Go to the documentation of this file.
1 #ifndef OUTPUT_FEATURE
2 #define OUTPUT_FEATURE
3 
4 #include <iostream>
5 #include <string>
6 #include <vector>
7 #include "../Feature.hpp"
8 
10 
11 class OutputFeature : public Feature{
12 
13  private:
14 
15 
16  public:
17  OutputFeature();
18  virtual void update(double value) = 0;
19 };
20 
21 #endif
Definition: OutputFeature.hpp:9
Definition: Feature.hpp:8
double value
Definition: Feature.hpp:11
Definition: OutputFeature.hpp:9
virtual void update(double value)=0
OutputFeature()
Definition: OutputFeature.cpp:3
OutputId
Definition: OutputFeature.hpp:9
Definition: OutputFeature.hpp:9
Definition: OutputFeature.hpp:11