Home || Visual Search || Applications || Architecture || 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 Thu Jan 13 09:19:29 2011 for ImpalaSrc by  doxygen 1.5.1