Cosmetics + fixed the entrance in last time frame and exits in first time frame.
[mtp.git] / mtp.cc
diff --git a/mtp.cc b/mtp.cc
index 1af71af..e07a738 100644 (file)
--- a/mtp.cc
+++ b/mtp.cc
@@ -20,7 +20,6 @@
 
 #include <iostream>
 #include <fstream>
-#include <stdlib.h>
 
 using namespace std;
 
@@ -37,8 +36,8 @@ scalar_t detection_score(int true_label, scalar_t flip_noise) {
 }
 
 int main(int argc, char **argv) {
-  int nb_locations = 1000;
-  int nb_time_steps = 1000;
+  int nb_locations = 6;
+  int nb_time_steps = 5;
   int motion_amplitude = 1;
 
   Tracker *tracker = new Tracker(nb_time_steps, nb_locations);
@@ -75,6 +74,12 @@ int main(int argc, char **argv) {
     cout << endl;
   }
 
+  {
+    ofstream dot("graph.dot");
+    tracker->print_graph_dot(&dot);
+    cout << "Wrote graph.dot." << endl;
+  }
+
   delete tracker;
 
   exit(EXIT_SUCCESS);