summaryrefslogtreecommitdiff
path: root/src/theory/booleans/kinds
blob: ad45e3cbb6725d46619315607695523e40e8728b (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# 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"
typechecker "theory/booleans/theory_bool_type_rules.h"

properties finite

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

sort BOOLEAN_TYPE \
    2 \
    well-founded \
        "NodeManager::currentNM()->mkConst(false)" \
        "expr/node_manager.h" \
    "Boolean type"

constant CONST_BOOLEAN \
    bool \
    ::CVC4::BoolHashFunction \
    "util/bool.h" \
    "truth and falsity; payload is a (C++) bool"

enumerator BOOLEAN_TYPE \
    "::CVC4::theory::booleans::BooleanEnumerator" \
    "theory/booleans/type_enumerator.h"

operator NOT 1 "logical not"
operator AND 2: "logical and (N-ary)"
operator IFF 2 "logical equivalence (exactly two parameters)"
operator IMPLIES 2 "logical implication (exactly two parameters)"
operator OR 2: "logical or (N-ary)"
operator XOR 2 "exclusive or (exactly two parameters)"
operator ITE 3 "if-then-else, used for both Boolean and term ITE constructs; first parameter is (Boolean-sorted) condition, second is 'then', third is 'else' and these two parameters must have same base sort"

typerule CONST_BOOLEAN ::CVC4::theory::boolean::BooleanTypeRule

typerule NOT ::CVC4::theory::boolean::BooleanTypeRule
typerule AND ::CVC4::theory::boolean::BooleanTypeRule
typerule IFF ::CVC4::theory::boolean::BooleanTypeRule
typerule IMPLIES ::CVC4::theory::boolean::BooleanTypeRule
typerule OR ::CVC4::theory::boolean::BooleanTypeRule
typerule XOR ::CVC4::theory::boolean::BooleanTypeRule
typerule ITE ::CVC4::theory::boolean::IteTypeRule

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