Cosmetics.
[mtp.git] / mtp.cc
diff --git a/mtp.cc b/mtp.cc
index c982fae..61dcc21 100644 (file)
--- a/mtp.cc
+++ b/mtp.cc
 
 #include <iostream>
 #include <fstream>
+#include <sys/time.h>
 
 using namespace std;
 
 #include "mtp_tracker.h"
 
+scalar_t diff_in_second(struct timeval *start, struct timeval *end) {
+  return
+    scalar_t(end->tv_sec - start->tv_sec) +
+    scalar_t(end->tv_usec - start->tv_usec)/1000000;
+}
+
 int main(int argc, char **argv) {
+  timeval start_time, end_time;
 
   if(argc < 2) {
     cerr << argv[0] << " <tracker file>" << endl;
@@ -42,13 +50,20 @@ int main(int argc, char **argv) {
 
     MTPTracker *tracker = new MTPTracker();
 
+    cout << "Reading " << argv[1] << "." << endl;
     tracker->read(in_tracker);
-    cout << "Read " << argv[1] << endl;
 
+    cout << "Building the graph ... "; cout.flush();
+    gettimeofday(&start_time, 0);
     tracker->build_graph();
-    cout << "Starting to track ... "; cout.flush();
+    gettimeofday(&end_time, 0);
+    cout << "done (" << diff_in_second(&start_time, &end_time) << "s)." << endl;
+
+    cout << "Tracking ... "; cout.flush();
+    gettimeofday(&start_time, 0);
     tracker->track();
-    cout << "done." << endl;
+    gettimeofday(&end_time, 0);
+    cout << "done (" << diff_in_second(&start_time, &end_time) << "s)." << endl;
 
     ofstream out_traj("result.trj");
     tracker->write_trajectories(&out_traj);