a class to ordonnate the MC_int_pair More...
#include <MC_int_pair.hpp>
Public Member Functions | |
| bool | operator() (const MC_int_pair &a, const MC_int_pair &b) const |
a class to ordonnate the MC_int_pair
Definition at line 127 of file MC_int_pair.hpp.
| bool mesh_conv::MC_int_pair_less::operator() | ( | const MC_int_pair & | a, | |
| const MC_int_pair & | b | |||
| ) | const [inline] |
Definition at line 130 of file MC_int_pair.hpp.
References mesh_conv::MC_int_pair::ordonated().
00131 { 00132 MC_int_pair ca=a.ordonated(); 00133 MC_int_pair cb=b.ordonated(); 00134 00135 if( (ca[0]<cb[0]) || (ca[0]==cb[0] && ca[1]<cb[1]) ) 00136 return true; 00137 return false; 00138 }

1.6.1