Changed the date.
[mtp.git] / mtp_stress_test.cc
index 7fa7a64..68af561 100644 (file)
@@ -57,7 +57,7 @@ int main(int argc, char **argv) {
 
   for(int t = 0; t < nb_time_steps; t++) {
     for(int l = 0; l < nb_locations; l++) {
-      tracker->detection_scores[t][l] = drand48() - 0.95;
+      tracker->detection_scores[t][l] = scalar_t(drand48()) - 0.95f;
     }
   }
 
@@ -73,7 +73,7 @@ int main(int argc, char **argv) {
          << " starting at " << tracker->trajectory_entrance_time(t)
          << ", duration " << tracker->trajectory_duration(t)
          << ", score " << tracker->trajectory_score(t)
-         << ", through nodes ";
+         << ", through locations";
     for(int u = 0; u < tracker->trajectory_duration(t); u++) {
       cout << " " << tracker->trajectory_location(t, u);
     }