diff data/fileio/CSVFormat.cpp @ 676:611a4fa14dde sv_v1.8

* Avoid including non-value columns in 3d-model column count (fixes #38)
author Chris Cannam
date Mon, 04 Apr 2011 15:20:29 +0100
parents ad7c96620886
children e50a8fee6752
line wrap: on
line diff
--- a/data/fileio/CSVFormat.cpp	Tue Mar 29 17:55:31 2011 +0100
+++ b/data/fileio/CSVFormat.cpp	Mon Apr 04 15:20:29 2011 +0100
@@ -174,11 +174,11 @@
         }
     }
 
-    std::cerr << "Estimated column qualities: ";
-    for (int i = 0; i < m_columnCount; ++i) {
-        std::cerr << int(m_columnQualities[i]) << " ";
-    }
-    std::cerr << std::endl;
+//    std::cerr << "Estimated column qualities: ";
+//    for (int i = 0; i < m_columnCount; ++i) {
+//        std::cerr << int(m_columnQualities[i]) << " ";
+//    }
+//    std::cerr << std::endl;
 }
 
 void
@@ -286,15 +286,15 @@
         }
     }
 
-    std::cerr << "Estimated column purposes: ";
-    for (int i = 0; i < m_columnCount; ++i) {
-        std::cerr << int(m_columnPurposes[i]) << " ";
-    }
-    std::cerr << std::endl;
+//    std::cerr << "Estimated column purposes: ";
+//    for (int i = 0; i < m_columnCount; ++i) {
+//        std::cerr << int(m_columnPurposes[i]) << " ";
+//    }
+//    std::cerr << std::endl;
 
-    std::cerr << "Estimated model type: " << m_modelType << std::endl;
-    std::cerr << "Estimated timing type: " << m_timingType << std::endl;
-    std::cerr << "Estimated units: " << m_timeUnits << std::endl;
+//    std::cerr << "Estimated model type: " << m_modelType << std::endl;
+//    std::cerr << "Estimated timing type: " << m_timingType << std::endl;
+//    std::cerr << "Estimated units: " << m_timeUnits << std::endl;
 }
 
 CSVFormat::ColumnPurpose