Bjoern Froehlich 13 years ago
parent
commit
3ed94119e9
1 changed files with 2 additions and 1 deletions
  1. 2 1
      semseg/SemSegContextTree.cpp

+ 2 - 1
semseg/SemSegContextTree.cpp

@@ -1827,13 +1827,14 @@ void SemSegContextTree::restore (std::istream & is, int format)
   is >> trees;
   forest.clear();
 
+  
   for (int t = 0; t < trees; t++)
   {
     vector<TreeNode> tmptree;
     forest.push_back (tmptree);
     int nodes;
     is >> nodes;
-    //cout << "nodes: " << nodes << endl;
+    cout << "tree nb " << t << " has " << nodes << " nodes." << endl;
     for (int n = 0; n < nodes; n++)
     {
       TreeNode tmpnode;