MOAB: Mesh Oriented datABase
(version 5.4.1)
|
Public Member Functions | |
bool | operator() (const std::vector< EntityHandle > *v1, const std::vector< EntityHandle > *v2) const |
Definition at line 233 of file ReorderTool.cpp.
bool moab::CompSortedVect::operator() | ( | const std::vector< EntityHandle > * | v1, |
const std::vector< EntityHandle > * | v2 | ||
) | const [inline] |
Definition at line 235 of file ReorderTool.cpp.
{ std::vector< EntityHandle >::const_iterator i1, i2; for( i1 = v1->begin(), i2 = v2->begin(); i1 != v1->end(); ++i1, ++i2 ) { if( i2 == v2->end() || *i1 > *i2 ) return false; else if( *i1 < *i2 ) return true; } return i2 != v2->end(); }