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 string toString(const unsigned int& x);
00073
00077 static double infinity() {return HUGE_VAL;}
00078
00082 static double negativeInfinity() {return -HUGE_VAL;}
00083
00087 #ifdef M_PI
00088 static double pi() {return M_PI;}
00089 #else
00090 static double pi() {return 3.14159265358979323846;}
00091 #endif
00092
00095 static double getChopVal() {return chopVal_;}
00099 static void setChopVal(double chopVal) {chopVal_ = chopVal;}
00100
00101 private:
00102 static double chopVal_;
00103 };
00104
00106 inline string toString(const int& x) {return Utils::toString(x);}
00107
00109 inline string toString(const unsigned int& x) {return Utils::toString(x);}
00110
00112 inline string toString(const double& x) {return Utils::toString(x);}
00113
00115 inline string toString(const string& x) {return x;}
00116
00117 }
00118
00119 #endif
00120
00121