#ifndef NEURONS_H #define NEURONS_H typedef struct neuron Neuron; struct neuron { float output; //output of the neuron float *weights; //weights associated to the neuron + neuron's bias float delta_error; //the delta error for updating current weights Neuron *same_layer_next_neuron; }; #endif