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

void Impala::Core::Table::AnnotationTable::DumpSummary (  )  [inline]

Definition at line 448 of file AnnotationTable.h.

References GetLabel(), IsNegative(), IsPositive(), and Impala::Core::Table::Table::Size().

Referenced by DumpSummaryObject().

00449     {
00450         int pos=0, neg=0, skip=0;
00451         for (int i=0 ; i<Size() ; ++i)
00452         {
00453             if (IsPositive(i))
00454                 ++pos;
00455             else if (IsNegative(i))
00456                 ++neg;
00457             else
00458                 ++skip;
00459         }
00460         std::cout << GetLabel() << " : " << pos << " positive, " << neg
00461                   << " negative, " << skip << " skip, " << Size() << " total"
00462                   << std::endl;
00463     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:20:45 2011 for ImpalaSrc by  doxygen 1.5.1