Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

void @44::DumpTreeCounts ( Feature::RandomTree tree,
int  i 
) [static]

Definition at line 139 of file mainRandomForest.cpp.

References Impala::Core::Feature::RandomTree::DumpCount(), ILOG_ERROR, ILOG_FUNCTION, main(), and Impala::Util::MakeString().

Referenced by RandomForest().

00140 {
00141     ILOG_FUNCTION(main);
00142     std::ofstream ofs(("countdump"+MakeString(i)+".txt").c_str());
00143     if(ofs.is_open())
00144     {
00145         tree->DumpCount(ofs);
00146         ofs.close();
00147     }
00148     else
00149         ILOG_ERROR("couldn't dump tree counts");
00150 }

Here is the call graph for this function:


Generated on Thu Jan 13 09:05:38 2011 for ImpalaSrc by  doxygen 1.5.1