summaryrefslogtreecommitdiff
path: root/src/expr/node_manager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr/node_manager.cpp')
-rw-r--r--src/expr/node_manager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expr/node_manager.cpp b/src/expr/node_manager.cpp
index 42be16742..70f221091 100644
--- a/src/expr/node_manager.cpp
+++ b/src/expr/node_manager.cpp
@@ -708,7 +708,7 @@ TypeNode NodeManager::TupleTypeCache::getTupleType( NodeManager * nm, std::vecto
if( index==types.size() ){
if( d_data.isNull() ){
std::stringstream sst;
- sst << "__cvc4_tuple";
+ sst << "__cvc5_tuple";
for (unsigned i = 0; i < types.size(); ++ i) {
sst << "_" << types[i];
}
@@ -738,7 +738,7 @@ TypeNode NodeManager::RecTypeCache::getRecordType( NodeManager * nm, const Recor
{
if( d_data.isNull() ){
std::stringstream sst;
- sst << "__cvc4_record";
+ sst << "__cvc5_record";
for (const std::pair<std::string, TypeNode>& i : rec)
{
sst << "_" << i.first << "_" << i.second;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback