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:
00049
00053 static void aboutBuild();
00054
00058 static double chop(const double& x);
00059
00063 static string toString(const double& x);
00064
00068 static string toString(const int& x);
00069
00073 static string toString(const unsigned int& x);
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00088 #ifdef M_PI
00089 static double pi() {return M_PI;}
00090 #else
00091 static double pi() {return 3.14159265358979323846;}
00092 #endif
00093
00096 static double getChopVal() {return chopVal_;}
00100 static void setChopVal(double chopVal) {chopVal_ = chopVal;}
00102 static std::string getParallelExtension(
00103 int procRank = -1
00104 ,int numProcs = -1
00105 );
00108 private:
00109 static double chopVal_;
00110 };
00111
00113 inline string toString(const int& x) {return Utils::toString(x);}
00114
00116 inline string toString(const unsigned int& x) {return Utils::toString(x);}
00117
00119 inline string toString(const double& x) {return Utils::toString(x);}
00120
00122 inline string toString(const string& x) {return x;}
00123
00124 }
00125
00126 #endif
00127
00128