PolyBoRi
ZeroFunction.h
Go to the documentation of this file.
1 // -*- c++ -*-
2 //*****************************************************************************
14 //*****************************************************************************
15 
16 #ifndef polybori_groebner_ZeroFunction_h_
17 #define polybori_groebner_ZeroFunction_h_
18 
19 // include basic definitions
20 #include "groebner_defs.h"
21 
23 
29  public:
30  unsigned int operator() (unsigned int val){
31  return 0;
32  }
33 };
34 
36 
37 #endif /* polybori_ZeroFunction_h_ */
#define END_NAMESPACE_PBORIGB
Definition: groebner_defs.h:16
#define BEGIN_NAMESPACE_PBORIGB
Definition: groebner_defs.h:15
This class defines ZeroFunction.
Definition: ZeroFunction.h:28