summaryrefslogtreecommitdiff
path: root/src/theory/arith/normal.h
blob: 0dbd7355a586d80f1ade7fe2fb000819802c56a2 (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

#ifndef __CVC4__THEORY__ARITH__NORMAL_H
#define __CVC4__THEORY__ARITH__NORMAL_H

namespace CVC4 {
namespace theory {
namespace arith {

struct IsNormalAttrID;

typedef expr::Attribute<IsNormalAttrID, bool> IsNormal;


inline bool isNormalized(TNode x){
  return x.getAttribute(IsNormal());
}

struct NormalFormAttrID;

typedef expr::Attribute<IsNormalAttrID, Node> NormalForm;



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


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