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

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

Definition at line 21 of file RandomTree.h.

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

00022     {
00023         if(codeword < 0)
00024             ILOG_ERROR("illegal codeword in RandomTree node c'tor");
00025         mCodeWord = codeword;
00026         mSplitDimension = -1;
00027         mSplitValue = -1;
00028         mLeft = 0;
00029         mRight = 0;
00030         mCount = -1;
00031     }


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