Commit for the theory engine and rewriter changes. Changes are substantial and not...
[cvc5.git] / src / theory / booleans / kinds
1 # kinds -*- sh -*-
2 #
3 # For documentation on this file format, please refer to
4 # src/theory/builtin/kinds.
5 #
6
7 theory THEORY_BOOL ::CVC4::theory::booleans::TheoryBool "theory/booleans/theory_bool.h"
8
9 properties finite
10
11 rewriter ::CVC4::theory::booleans::TheoryBoolRewriter "theory/booleans/theory_bool_rewriter.h"
12
13 sort BOOLEAN_TYPE "Boolean type"
14
15 constant CONST_BOOLEAN \
16 bool \
17 ::CVC4::BoolHashStrategy \
18 "util/bool.h" \
19 "truth and falsity"
20
21 operator NOT 1 "logical not"
22 operator AND 2: "logical and"
23 operator IFF 2 "logical equivalence"
24 operator IMPLIES 2 "logical implication"
25 operator OR 2: "logical or"
26 operator XOR 2 "exclusive or"
27 operator ITE 3 "if-then-else"
28
29 endtheory