00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #ifndef TEUCHOS_UTILS_H
00030 #define TEUCHOS_UTILS_H
00031
00036 #include "Teuchos_ConfigDefs.hpp"
00037
00042 namespace Teuchos
00043 {
00044 using std::string;
00045
00046 class Utils
00047 {
00048 public:
00052 static void aboutBuild();
00053
00057 static double chop(const double& x);
00058
00062 static string toString(const double& x);
00063
00067 static string toString(const int& x);
00068
00072 static double infinity() {return HUGE_VAL;}
00073
00077 static double negativeInfinity() {return -HUGE_VAL;}
00078
00082 #ifdef M_PI
00083 static double pi() {return M_PI;}
00084 #else
00085 static double pi() {return 3.14159265358979323846;}
00086 #endif
00087
00090 static double getChopVal() {return chopVal_;}
00094 static void setChopVal(double chopVal) {chopVal_ = chopVal;}
00095
00096 private:
00097 static double chopVal_;
00098 };
00099
00101 inline string toString(const int& x) {return Utils::toString(x);}
00102
00104 inline string toString(const double& x) {return Utils::toString(x);}
00105
00107 inline string toString(const string& x) {return x;}
00108
00109 }
00110
00111 #endif
00112
00113