blob: 1503cfe52752caf8809162524e9b83f27d30a6eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
|