diff options
Diffstat (limited to 'Settings/Settings.h')
| -rw-r--r-- | Settings/Settings.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Settings/Settings.h b/Settings/Settings.h new file mode 100644 index 0000000..1503cfe --- /dev/null +++ b/Settings/Settings.h @@ -0,0 +1,20 @@ +#ifndef SETTINGS_H +#define SETTINGS_H +#include<vector> + +class Settings{ +private: + int nbrHiddenLayers; + std::vector<int>* archi; + std::vector<double>* differentOutputs = new std::vector<double>; +public: + Settings(char const * fileName); + int getNbrHiddenLayers(); + std::vector<int>* getArchi(); + std::vector<double>* getDifferentOutputs(); + +}; + +bool exists(double n,std::vector<double>* tab); + +#endif |
