changeset 90:7bb586054b16 refactors

And remove that printout
author Chris Cannam
date Thu, 27 Nov 2014 12:59:28 +0000
parents 7785bb8a1be6
children 35e50f28720f
files src/Finder.cpp
diffstat 1 files changed, 0 insertions(+), 26 deletions(-) [+]
line wrap: on
line diff
--- a/src/Finder.cpp	Thu Nov 27 12:59:23 2014 +0000
+++ b/src/Finder.cpp	Thu Nov 27 12:59:28 2014 +0000
@@ -291,32 +291,6 @@
              << endl;
         cerr << "Note: diagonal weight = " << m_m->getDiagonalWeight() << endl;
         cerr << endl;
-        cerr << "Distance matrix to this point (flipped):" << endl;
-        for (int c = 0; c <= err.r; ++c) {
-            cerr << "\t" << c;
-        }
-        cerr << endl;
-        for (int r = 0; r <= err.c; ++r) {
-            cerr << r;
-            for (int c = 0; c <= err.r; ++c) {
-                cerr << "\t" << m_m->getDistance(c, r);
-            }
-            cerr << endl;
-        }
-        cerr << endl;
-        cerr << "Cost matrix to this point (flipped):" << endl;
-        for (int c = 0; c <= err.r; ++c) {
-            cerr << "\t" << c;
-        }
-        cerr << endl;
-        for (int r = 0; r <= err.c; ++r) {
-            cerr << r;
-            for (int c = 0; c <= err.r; ++c) {
-                cerr << "\t" << m_m->getPathCost(c, r);
-            }
-            cerr << endl;
-        }
-        cerr << endl;
     }
 #endif