summaryrefslogtreecommitdiff
path: root/src/expr/expr_manager_template.h
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2016-02-15 13:02:02 -0600
committerajreynol <andrew.j.reynolds@gmail.com>2016-02-15 13:02:02 -0600
commit62b673a6b8444c14c169a984dd6e3fc8f685851e (patch)
treef0703edec34e3512dac340ce0059cba6368d7dd8 /src/expr/expr_manager_template.h
parent7acc2844df65ab6fdbf8166653c71eaa26d4d151 (diff)
Eliminate most of the internal representation infrastructure for tuples and records, replace with datatypes throughout, update cvc printer for tuples/records. Minor changes to API for records and tuples.
Diffstat (limited to 'src/expr/expr_manager_template.h')
-rw-r--r--src/expr/expr_manager_template.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expr/expr_manager_template.h b/src/expr/expr_manager_template.h
index e65cfc358..37ef128f4 100644
--- a/src/expr/expr_manager_template.h
+++ b/src/expr/expr_manager_template.h
@@ -341,12 +341,12 @@ public:
* <code>types[0..types.size()-1]</code>. <code>types</code> must
* have at least one element.
*/
- TupleType mkTupleType(const std::vector<Type>& types);
+ DatatypeType mkTupleType(const std::vector<Type>& types);
/**
* Make a record type with types from the rec parameter.
*/
- RecordType mkRecordType(const Record& rec);
+ DatatypeType mkRecordType(const Record& rec);
/**
* Make a symbolic expressiontype with types from
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback