|
TLayerData |
Accueil Précédent Suivant |
C / C++ declaration
typedef struct
{
long size;
short Index;
short Length;
short Activation;
TNeuronType NeuronType;
TStylePos StylePos;
short ActivationPlus
char LName[256];
int NetIndex;
} TLayerData;
Pascal declaration
PLayerData = ^TLayerData;
TLayerData = record
size: LOngInt;
Index: SmallInt;
Length: SmallInt;
Activation: SmallInt;
NeuronType: TNeuronType;
StylePos: TStylePos;
ActivationPlus: SmallInt;
LName: Array[0..255] of char;
NetIndex: Integer;
end;