PolyBoRi
PolyMonomialPairComparerLess.h
Go to the documentation of this file.
1 // -*- c++ -*-
2 //*****************************************************************************
14 //*****************************************************************************
15 
16 #ifndef polybori_groebner_PolyMonomialPairComparerLess_h_
17 #define polybori_groebner_PolyMonomialPairComparerLess_h_
18 
19 // include basic definitions
20 #include "groebner_defs.h"
21 #include <utility>
23 
29 public:
30  bool operator() (const std::pair<Polynomial,Monomial>& a,
31  const std::pair<Polynomial, Monomial>& b){
32  return a.second < b.second;
33 
34  }
35 };
36 
38 
39 #endif /* polybori_PolyMonomialPairComparerLess_h_ */