13 lines
No EOL
306 B
C
13 lines
No EOL
306 B
C
#ifndef NETWORK_H
|
|
#define NETWORK_H
|
|
|
|
typedef struct network Network;
|
|
struct network
|
|
{
|
|
Neuron *layers_first_neurons; //first neuron of each layer of the network
|
|
Neuron *layers_last_neurons; //last neuron of each layer of the network
|
|
int number_layers; //keeps track of layers' number
|
|
};
|
|
|
|
|
|
#endif |