summaryrefslogtreecommitdiff
path: root/src/theory/booleans/kinds
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2011-04-25 23:44:00 +0000
committerMorgan Deters <mdeters@gmail.com>2011-04-25 23:44:00 +0000
commit97111ecb8681838f2d201420cda12ca9fc7184ed (patch)
treeeee78a3ff75c1c9535b1db89ed273116a6ef3542 /src/theory/booleans/kinds
parentde164c9308f6461472b95c23aae68d9d9686d8ae (diff)
Monday tasks:
* new "well-foundedness" type property (like cardinality) specified in Theory kinds files; specifies well-foundedness and a ground term * well-foundedness / finite checks in Datatypes now superseded by type system isFinite(), isWellFounded(), mkGroundTerm(). * new "RecursionBreaker" template class, a convenient class that keeps a "seen" trail without you having to pass it around (which is difficult in cases of mutual recursion) of the idea of passing around a "seen" trail
Diffstat (limited to 'src/theory/booleans/kinds')
-rw-r--r--src/theory/booleans/kinds9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/theory/booleans/kinds b/src/theory/booleans/kinds
index ce7c9111a..d540d57f5 100644
--- a/src/theory/booleans/kinds
+++ b/src/theory/booleans/kinds
@@ -10,7 +10,12 @@ properties finite
rewriter ::CVC4::theory::booleans::TheoryBoolRewriter "theory/booleans/theory_bool_rewriter.h"
-sort BOOLEAN_TYPE 2 "Boolean type"
+sort BOOLEAN_TYPE \
+ 2 \
+ well-founded \
+ "NodeManager::currentNM()->mkConst(false)" \
+ "expr/node_manager.h" \
+ "Boolean type"
constant CONST_BOOLEAN \
bool \
@@ -26,4 +31,4 @@ operator OR 2: "logical or"
operator XOR 2 "exclusive or"
operator ITE 3 "if-then-else"
-endtheory \ No newline at end of file
+endtheory
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback