00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 typedef unsigned int uint;
00014
00015 const bool TRUE=true;
00016 const bool FALSE=false;
00017 const int EVEN=0;
00018 const int ODD=1;
00019 const int EVENODD=2;
00020 const int _NprocMax_=256;
00021 double PRECISION=3.0e-6;
00022
00024 char *mdp_program_name = "A generic test program";
00025
00027 char *mdp_random_seed_filename=0;
00028
00030 const unsigned long mdp_local_endianess=0x87654321;
00031
00032 const double Pi = 3.1415926535897932384626433832795028841971;
00033
00036 bool mdp_shutup = FALSE;
00037
00040 double mdp_precision=1e-5;
00041
00042
00043 #if defined(USE_DOUBLE_PRECISION)
00044 typedef double mdp_real;
00045 #else
00046 typedef float mdp_real;
00047 #endif
00048
00049 void _mpi_error_message(string, string, int);