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

bool Impala::Core::Feature::RandomTree::operator== ( const RandomTree that  )  [inline]

Definition at line 104 of file RandomTree.h.

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

Referenced by operator!=().

00105     {
00106         if(mCodeWord != that.mCodeWord)
00107             return false;
00108         if(mCodeWord >= 0)
00109             return true;
00110         return mSplitValue == that.mSplitValue &&
00111                mSplitDimension == that.mSplitDimension &&
00112                *mLeft == *(that.mLeft) &&
00113                *mRight == *(that.mRight);
00114     }


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