X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;f=mtp.cc;h=e07a7386d163d2b12ddd677a454368f0ef924117;hb=df0839702923a2c5128b9374e01984dfb9f7791b;hp=1af71afbf4ff8a44b15026097467a42b60bbc1ad;hpb=14eafbcbbc5cb10464f39596b34eebce0a6922ed;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);