summaryrefslogtreecommitdiff
path: root/src/theory/arith/basic.h
blob: 0f1cb07dc84f6378742f9a0830e63fe79d1c9f4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34

#include "expr/node.h"
#include "expr/attribute.h"


#ifndef __CVC4__THEORY__ARITH__BASIC_H
#define __CVC4__THEORY__ARITH__BASIC_H

namespace CVC4 {
namespace theory {
namespace arith {

struct IsBasicAttrID;

typedef expr::Attribute<IsBasicAttrID, bool> IsBasic;


inline bool isBasic(TNode x){
  return x.getAttribute(IsBasic());
}

inline void makeBasic(TNode x){
  return x.setAttribute(IsBasic(), true);
}

inline void makeNonbasic(TNode x){
  return x.setAttribute(IsBasic(), false);
}

}; /* namespace arith */
}; /* namespace theory */
}; /* namespace CVC4 */

#endif /* __CVC4__THEORY__ARITH__BASIC_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback