innerclass necessary for using the sort algo.
More...
|
| Compare (bool b=false) |
| Default constructor with an order flag. More...
|
|
bool | operator() (const std::pair< std::pair< Int, Real >, Real > &c1, const std::pair< std::pair< Int, Real >, Real > &c2) |
| overloaded operator() for comparing maps of maps std::pair<std::pair<Int,Real>,Real>. If flag is false the second argument of the outer map is selected. The output is an ascending order. If the order flag is true, the first argument of the inner class is selected to get a descending oder. More...
|
|
bool | operator() (const std::pair< Real, Real > &c1, const std::pair< Real, Real > &c2) |
| overloaded operator() for comparing pairs of Real, Real std::pair<Real,Real>. If the order flag is false, an ascending order are returned else a descending. The comparison is done by the first argument of the map. More...
|
|
innerclass necessary for using the sort algo.
Defines serveral overloaded operator() for using the std::sort algorithm
- Experimental classes:
- This algorithm is work in progress and might change.
Default constructor with an order flag.
bool operator() |
( |
const std::pair< std::pair< Int, Real >, Real > & |
c1, |
|
|
const std::pair< std::pair< Int, Real >, Real > & |
c2 |
|
) |
| |
|
inline |
overloaded operator() for comparing maps of maps std::pair<std::pair<Int,Real>,Real>. If flag is false the second argument of the outer map is selected. The output is an ascending order. If the order flag is true, the first argument of the inner class is selected to get a descending oder.
bool operator() |
( |
const std::pair< Real, Real > & |
c1, |
|
|
const std::pair< Real, Real > & |
c2 |
|
) |
| |
|
inline |
overloaded operator() for comparing pairs of Real, Real std::pair<Real,Real>. If the order flag is false, an ascending order are returned else a descending. The comparison is done by the first argument of the map.