- debug
authorAnatoly <Titov_AI@pnpi.nrcki.ru>
Wed, 21 Oct 2020 10:57:30 +0000 (13:57 +0300)
committerAnatoly <Titov_AI@pnpi.nrcki.ru>
Wed, 21 Oct 2020 10:57:30 +0000 (13:57 +0300)
src/colorvec.cpp

index 4e450159764110e792b2bef70473a216c26101fc..e736062a185e4d15948dc327b6ab6845bfaff7c4 100644 (file)
@@ -106,8 +106,10 @@ void betaListDigestion(const std::string &inputFile, std::vector< std::vector< s
     std::string     line;
     getline(file, line); // считываем число в первой строке - кол-во осмысленных элементов в строках - нам не нужно
     getline(file, line);
+    int count = 0;
     if (line.size() > 3) {
         do {
+            std::cout << "\t\tNew line = " << ++count << std::endl;
             inputBL.resize(inputBL.size() + 1);
             parseBetaListDATLine(line, inputBL.back());
             getline(file, line);