00001 00007 #ifndef CONSTANT_H 00008 #define CONSTANT_H 00009 00010 #include <iostream> 00011 #include <string> 00012 #include <cmath> 00013 #include <assert.h> 00014 using namespace std; 00015 00016 #ifdef SINGLE 00017 #define real float 00018 #else 00019 #define real double 00020 #endif 00021 00025 const real pi = 3.141592653589793238462643; 00026 00027 #endif
1.5.6