summaryrefslogtreecommitdiff
path: root/src/compat/cvc3_compat.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-08-28 01:10:16 +0000
committerMorgan Deters <mdeters@gmail.com>2012-08-28 01:10:16 +0000
commitcf287f593931a1c4fc141e18845b4c5d36879889 (patch)
tree4dad0f555b7db01fbeedcd9eace394cd8f7a0fb4 /src/compat/cvc3_compat.h
parentb7b1c1d99ffa333704af2c8ecd60b1af8833a28b (diff)
Improved compatibility layer, now supports quantifiers. Also incorporates
numerous bugfixes, and the cvc3 system test is enabled.
Diffstat (limited to 'src/compat/cvc3_compat.h')
-rw-r--r--src/compat/cvc3_compat.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/compat/cvc3_compat.h b/src/compat/cvc3_compat.h
index 3ef40636a..83465775b 100644
--- a/src/compat/cvc3_compat.h
+++ b/src/compat/cvc3_compat.h
@@ -526,8 +526,13 @@ class CVC4_PUBLIC ValidityChecker {
CLFlags* d_clflags;
CVC4::Options d_options;
CVC3::ExprManager* d_em;
+ std::map<CVC4::ExprManager*, CVC4::ExprManagerMapCollection> d_emmc;
+ std::set<ValidityChecker*> d_reverseEmmc;
CVC4::SmtEngine* d_smt;
CVC4::parser::Parser* d_parserContext;
+ std::vector<Expr> d_exprTypeMapRemove;
+
+ friend class Type; // to reach in to d_exprTypeMapRemove
typedef std::hash_map<std::string, const CVC4::Datatype*, CVC4::StringHashFunction> ConstructorMap;
typedef std::hash_map<std::string, std::pair<const CVC4::Datatype*, std::string>, CVC4::StringHashFunction> SelectorMap;
@@ -539,6 +544,9 @@ class CVC4_PUBLIC ValidityChecker {
void setUpOptions(CVC4::Options& options, const CLFlags& clflags);
+ // helper function for bitvectors
+ Expr bvpad(int len, const Expr& e);
+
public:
//! Constructor
ValidityChecker();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback