19 vector < vector <Neuron> > myLayers;
42 void makeDefaultInputs();
51 void makeNetwork(vector<double>,
int,
int,
int );
60 void makeManuallyNetwork(vector<double>);
69 vector<double> startProcess(vector<double>);
70 vector<Neuron> propagation(vector<double>);
71 void backPropagation();
72 void readjustsWeights();
73 void printNeuralNetwork();
74 void printVector(vector<double>);
75 void setExpectedOutputs(
int,vector<double>);
76 int getSizeExpectedOutputs();
78 vector < vector <double> > ExpectedOutputs;