XCSF
1.4.7
XCSF learning classifier system
|
Forward declaration of layer structure. More...
#include <neural.h>
Data Fields | |
struct Layer * | layer |
Pointer to the layer data structure. More... | |
struct Llist * | prev |
Pointer to the previous layer (forward) More... | |
struct Llist * | next |
Pointer to the next layer (backward) More... | |
Forward declaration of layer structure.
Double linked list of layers data structure.
struct Layer* Llist::layer |
Pointer to the layer data structure.
Definition at line 40 of file neural.h.
Referenced by cond_neural_connections(), cond_neural_neurons(), neural_copy(), neural_free(), neural_insert(), neural_json_export(), neural_learn(), neural_mutate(), neural_output(), neural_outputs(), neural_propagate(), neural_rand(), neural_remove(), neural_resize(), neural_save(), neural_size(), pred_neural_connections(), pred_neural_eta(), pred_neural_expand(), and pred_neural_neurons().
struct Llist* Llist::next |
Pointer to the next layer (backward)
Definition at line 42 of file neural.h.
Referenced by neural_insert(), neural_learn(), neural_remove(), and pred_neural_expand().
struct Llist* Llist::prev |
Pointer to the previous layer (forward)
Definition at line 41 of file neural.h.
Referenced by cond_neural_connections(), cond_neural_neurons(), neural_copy(), neural_free(), neural_insert(), neural_json_export(), neural_learn(), neural_mutate(), neural_propagate(), neural_rand(), neural_remove(), neural_resize(), neural_save(), neural_size(), pred_neural_connections(), pred_neural_eta(), and pred_neural_neurons().