summaryrefslogtreecommitdiff
path: root/src/parser/parser.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-11-27 02:13:38 +0000
committerMorgan Deters <mdeters@gmail.com>2012-11-27 02:13:38 +0000
commitb122cec27ca27d0b48e786191448e0053be78ed0 (patch)
tree615981d8623e830894f02fc528b173ac7461f934 /src/parser/parser.h
parent3da16da97df7cd2efd4b113db3bfef8b9c138ebe (diff)
Tuples and records merge. Resolves bug 270.
Also some fixes to parametric datatypes I found, and fixes for a handful of bugs, including some observed with --check-models --incremental on together. (this commit was certified error- and warning-free by the test-and-commit script.)
Diffstat (limited to 'src/parser/parser.h')
-rw-r--r--src/parser/parser.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/parser/parser.h b/src/parser/parser.h
index eb76900d2..eed8531a5 100644
--- a/src/parser/parser.h
+++ b/src/parser/parser.h
@@ -141,20 +141,6 @@ class CVC4_PUBLIC Parser {
/** Are we only parsing? */
bool d_parseOnly;
- /**
- * We might see the same record type multiple times; we have
- * to match always to the same Type. This map contains all the
- * record types we have.
- */
- std::map<std::vector< std::pair<std::string, Type> >, DatatypeType> d_recordTypes;
-
- /**
- * We might see the same tuple type multiple times; we have
- * to match always to the same Type. This map contains all the
- * tuple types we have.
- */
- std::map<std::vector<Type>, DatatypeType> d_tupleTypes;
-
/** The set of operators available in the current logic. */
std::set<Kind> d_logicOperators;
@@ -420,16 +406,6 @@ public:
mkMutualDatatypeTypes(const std::vector<Datatype>& datatypes);
/**
- * Create a record type, or if there's already a matching one, return that one.
- */
- DatatypeType mkRecordType(const std::vector< std::pair<std::string, Type> >& typeIds);
-
- /**
- * Create a tuple type, or if there's already a matching one, return that one.
- */
- DatatypeType mkTupleType(const std::vector<Type>& types);
-
- /**
* Add an operator to the current legal set.
*
* @param kind the built-in operator to add
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback