00001 // static.H 00002 00003 #ifndef AN_STATIC_H 00004 #define AN_STATIC_H 00005 00006 #include "lego.H" 00007 #include "TinkerKnobs.H" 00008 00009 class static_stats 00010 { 00011 public: 00012 double numDynamicOps; 00013 double numCycles; 00014 00015 static_stats() { numDynamicOps = numCycles = 0.0; } 00016 }; // end struct static stats 00017 00018 static_stats *StaticEstimate (legoRegion *); 00019 00020 #endif
1.3.2