struct fann * fann_create_shortcut_array(float learning_rate, unsigned int num_layers, unsigned int * neurons_per_layer);
fann_create_shortcut_array
will create a new artificial neural network, and return a pointer to
it. It is the same as fann_create_shortcut
, only it accepts an array as its final parameter
instead of variable arguments.
This function appears in FANN >= 1.2.0.