PolyBoRi
PolyPairData.h
Go to the documentation of this file.
1 // -*- c++ -*-
2 //*****************************************************************************
14 //*****************************************************************************
15 
16 #ifndef polybori_groebner_PolyPairData_h_
17 #define polybori_groebner_PolyPairData_h_
18 
19 // include basic definitions
20 #include "groebner_defs.h"
21 
23 
28 class PolyPairData: public PairData{
29 public:
32  return p;
33  }
34  PolyPairData(const BoolePolynomial& poly): p(poly) { }
35 };
36 
38 
39 #endif /* polybori_PolyPairData_h_ */
Definition: PolyEntryVector.h:28
#define END_NAMESPACE_PBORIGB
Definition: groebner_defs.h:16
#define BEGIN_NAMESPACE_PBORIGB
Definition: groebner_defs.h:15
This class defines PolyPairData.
Definition: PolyPairData.h:28
This class wraps the underlying decicion diagram type and defines the necessary operations.
Definition: BoolePolynomial.h:85
This class defines PairData.
Definition: PairData.h:30
PolyPairData(const BoolePolynomial &poly)
Definition: PolyPairData.h:34
Polynomial p
Definition: PolyPairData.h:30
Polynomial extract(const PolyEntryVector &v) const
Definition: PolyPairData.h:31