Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #ifndef MESHKIT_IA_IAWEIGHTS_HP
00009 #define MESHKIT_IA_IAWEIGHTS_HP
00010
00011 #include <vector>
00012
00013 namespace MeshKit {
00014
00015 class IAWeights : public std::vector<double>
00016 {
00017
00018 public:
00020 IAWeights();
00021
00023 virtual ~IAWeights();
00024
00025
00026
00027
00028 const bool debugging;
00029
00030
00031
00032
00033
00034 static double rand_excluded_middle();
00035
00036
00037
00038 void uniquify(const double lo, const double hi);
00039
00040
00041 void print() const;
00042
00043 };
00044
00045 }
00046
00047 #endif