summaryrefslogtreecommitdiff
path: root/src/timing_stats.h
diff options
context:
space:
mode:
authorChris Dyer <redpony@gmail.com>2009-12-14 20:35:11 -0500
committerChris Dyer <redpony@gmail.com>2009-12-14 20:35:11 -0500
commit851e389dffdd6996ea32d70defb8906de80b9edc (patch)
tree8c68ee77205badc056b8ab5b332e67e3e98017df /src/timing_stats.h
parentdc6930c00b4b276883280cff1ed6dcd9ddef03c7 (diff)
few small fixes of alignment tools, add new orthographic similarity feature for word aligner, final naming of directories, libraries in cdec
Diffstat (limited to 'src/timing_stats.h')
-rw-r--r--src/timing_stats.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/timing_stats.h b/src/timing_stats.h
deleted file mode 100644
index 0a9f7656..00000000
--- a/src/timing_stats.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef _TIMING_STATS_H_
-#define _TIMING_STATS_H_
-
-#include <string>
-#include <map>
-
-struct TimerInfo {
- int calls;
- double total_time;
- TimerInfo() : calls(), total_time() {}
-};
-
-struct Timer {
- Timer(const std::string& info);
- ~Timer();
- static void Summarize();
- private:
- static std::map<std::string, TimerInfo> stats;
- clock_t start_t;
- TimerInfo& cur;
- Timer(const Timer& other);
- const Timer& operator=(const Timer& other);
-};
-
-#endif