summaryrefslogtreecommitdiff
path: root/src/theory/arith/kinds
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arith/kinds')
-rw-r--r--src/theory/arith/kinds12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/theory/arith/kinds b/src/theory/arith/kinds
index 1871e897a..db47062bb 100644
--- a/src/theory/arith/kinds
+++ b/src/theory/arith/kinds
@@ -30,18 +30,28 @@ sort INTEGER_TYPE \
"NodeManager::currentNM()->mkConst(Integer(0))" \
"expr/node_manager.h" \
"Integer type"
+sort PSEUDOBOOLEAN_TYPE \
+ 2 \
+ well-founded \
+ "NodeManager::currentNM()->mkConst(Pseudoboolean(0))" \
+ "expr/node_manager.h" \
+ "Pseudoboolean type"
constant CONST_RATIONAL \
::CVC4::Rational \
::CVC4::RationalHashStrategy \
"util/rational.h" \
"a multiple-precision rational constant"
-
constant CONST_INTEGER \
::CVC4::Integer \
::CVC4::IntegerHashStrategy \
"util/integer.h" \
"a multiple-precision integer constant"
+constant CONST_PSEUDOBOOLEAN \
+ ::CVC4::Pseudoboolean \
+ ::CVC4::PseudobooleanHashStrategy \
+ "util/pseudoboolean.h" \
+ "a pseudoboolean constant"
operator LT 2 "less than, x < y"
operator LEQ 2 "less than or equal, x <= y"
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback