From ddbc8b15ea4ff788e10cffd2d3977b65462dd1a7 Mon Sep 17 00:00:00 2001 From: Francois Fleuret Date: Sat, 25 Aug 2012 19:26:03 +0200 Subject: [PATCH] Oups, some renaming of variables was a bit too brutal. Fixed. --- mtp_example.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mtp_example.cc b/mtp_example.cc index 0627b81..5f9eef2 100644 --- a/mtp_example.cc +++ b/mtp_example.cc @@ -82,7 +82,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->noisy_scores[t][l] = noisy_score(-1.0, 1.0, score_noise, flip_noise); + tracker->detection_scores[t][l] = noisy_score(-1.0, 1.0, score_noise, flip_noise); } } @@ -114,8 +114,8 @@ int main(int argc, char **argv) { if(la > nb_locations/2 - 1) la = nb_locations/2 - 1; if(lb < nb_locations/2 + 1) lb = nb_locations/2 + 1; - tracker->noisy_scores[t][la] = sa; - tracker->noisy_scores[t][lb] = sb; + tracker->detection_scores[t][la] = sa; + tracker->detection_scores[t][lb] = sb; } { // Write down the tracker setting -- 2.20.1