00001 #ifndef _DEFINES_H
00002 #define _DEFINES_H
00003
00004 #include <vector>
00005 #include <string>
00006
00007 #define ANNIE_VERSION "1.0"
00008 #define MAX_NEURONS_IN_LAYER 1000
00009
00010 #define _SIMPLE_NEURON_STRING "SimpleNeuron"
00011 #define _CENTER_NEURON_STRING "CenterNeuron"
00012 #define _RECURRENT_NEURON_STRING "RecurrentNeuron"
00013 #define _INPUT_NEURON_STRING "InputNeuron"
00014
00015 namespace annie
00016 {
00018 typedef double real;
00019
00021 typedef std::vector<real> VECTOR;
00022
00030 const int BINARY_FILE = 0;
00031
00033 const int TEXT_FILE = 1;
00034
00035 }
00036
00037 #endif // define _DEFINES_H
00038