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

Impala::Core::Feature::RandomTree::RandomTree ( int  codeword,
int  count 
) [inline]

Definition at line 33 of file RandomTree.h.

References ILOG_ERROR, mCodeWord, mCount, mLeft, mRight, mSplitDimension, and mSplitValue.

00034     {
00035         if(codeword < 0)
00036             ILOG_ERROR("illegal codeword in RandomTree node c'tor");
00037         mCodeWord = codeword;
00038         mSplitDimension = -1;
00039         mSplitValue = -1;
00040         mLeft = 0;
00041         mRight = 0;
00042         mCount = count;
00043     }


Generated on Fri Mar 19 11:10:36 2010 for ImpalaSrc by  doxygen 1.5.1