PolyBoRi
LeadingTerms.h
Go to the documentation of this file.
1 // -*- c++ -*-
2 //*****************************************************************************
14 //*****************************************************************************
15 
16 #ifndef polybori_groebner_LeadingTerms_h_
17 #define polybori_groebner_LeadingTerms_h_
18 
19 #include "TermsFacade.h"
20 #include "PolyEntry.h"
21 
22 // include basic definitions
23 #include "groebner_defs.h"
24 
26 
32  public TermsFacade<LeadingTerms> {
33 
34 public:
35  template <class Type>
36  LeadingTerms(const Type& rhs): TermsFacade<LeadingTerms>(rhs) {}
37 
38  bool isCompatible(const PolyEntry&) const { return true; }
39 };
40 
42 
43 #endif /* polybori_groebner_LeadingTerms_h_ */
#define END_NAMESPACE_PBORIGB
Definition: groebner_defs.h:16
This class defines TermsFacade.
Definition: TermsFacade.h:30
#define BEGIN_NAMESPACE_PBORIGB
Definition: groebner_defs.h:15
This class defines PolyEntry.
Definition: PolyEntry.h:32
This class defines LeadingTerms.
Definition: LeadingTerms.h:31
LeadingTerms(const Type &rhs)
Definition: LeadingTerms.h:36
bool isCompatible(const PolyEntry &) const
Definition: LeadingTerms.h:38