cbasedann/network.h
2021-11-27 10:46:33 +01:00

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