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

template<class DstArrayT, class Src1ArrayT, class Src2ArrayT>
bool Impala::Core::Array::Trait::QbWatershed< DstArrayT, Src1ArrayT, Src2ArrayT >::structPointValue::less ( const struct structPointValue rhs  )  const [inline]

Definition at line 44 of file QbWatershed.h.

References Impala::Core::Array::Trait::QbWatershed< DstArrayT, Src1ArrayT, Src2ArrayT >::structPointValue::cost, and Impala::Core::Array::Trait::QbWatershed< DstArrayT, Src1ArrayT, Src2ArrayT >::structPointValue::localOrderCounter.

Referenced by Impala::Core::Array::Trait::QbWatershed< DstArrayT, Src1ArrayT, Src2ArrayT >::structPointValue::operator<().

00045         { 
00046             if (cost<rhs.cost)
00047                 return true;
00048             if (cost>rhs.cost)
00049                 return false;
00050             // for equal values be a FIFO=QUEUE
00051             return localOrderCounter < rhs.localOrderCounter; 
00052         }


Generated on Fri Mar 19 11:04:52 2010 for ImpalaSrc by  doxygen 1.5.1