X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=mtp.cc;h=e07a7386d163d2b12ddd677a454368f0ef924117;hb=99d80f42d2ece6b40a5784f03994405621ceca65;hp=1af71afbf4ff8a44b15026097467a42b60bbc1ad;hpb=5b2943dfdbc77edc1f5f8bfa1f19102c6c049cc8;p=mtp.git diff --git a/mtp.cc b/mtp.cc index 1af71af..e07a738 100644 --- a/mtp.cc +++ b/mtp.cc @@ -20,7 +20,6 @@ #include #include -#include 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);