summaryrefslogtreecommitdiff
path: root/src/theory/booleans/kinds
blob: 25ca1cfe3891af96ea62f4fb6d9b4aa1ffdb3f8c (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
# kinds                                                               -*- sh -*-
#
# For documentation on this file format, please refer to
# src/theory/builtin/kinds.
#

theory THEORY_BOOL ::CVC4::theory::booleans::TheoryBool "theory/booleans/theory_bool.h"

properties finite  

rewriter ::CVC4::theory::booleans::TheoryBoolRewriter "theory/booleans/theory_bool_rewriter.h"

sort BOOLEAN_TYPE "Boolean type"

constant CONST_BOOLEAN \
    bool \
    ::CVC4::BoolHashStrategy \
    "util/bool.h" \
    "truth and falsity"

operator NOT 1 "logical not"
operator AND 2: "logical and"
operator IFF 2 "logical equivalence"
operator IMPLIES 2 "logical implication"
operator OR 2: "logical or"
operator XOR 2 "exclusive or"
operator ITE 3 "if-then-else"

endtheory
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback