33 #ifndef TRIVIALSORTER_H 34 #define TRIVIALSORTER_H 39 class TrivialSorter :
public std::binary_function<unsigned long, unsigned long, bool>{
42 bool operator() (
unsigned long a,
unsigned long b)
const {
49 #endif // -- TRIVIALSORTER_H A sorter that sorts a sequence in natural numerical order (1 < 2 < 3 < ...)
Definition: trivial_sorter.h:39
bool operator()(unsigned long a, unsigned long b) const
true iff a < b
Definition: trivial_sorter.h:42
Definition: abstract_bsgs.h:49