summaryrefslogtreecommitdiff
path: root/src/expr
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2017-04-14 17:25:18 -0500
committerajreynol <andrew.j.reynolds@gmail.com>2017-04-14 17:25:18 -0500
commit25fcfe393d1d8808a866a5f1cfc4f7edf273316d (patch)
treeb0231134efd90a16059baed9812a8353912bb39b /src/expr
parent08d6ec676189826f99756f9245186ee9de7dbc36 (diff)
Actively split for upwards closusure intersection. Minor clean up, add regressions.
Diffstat (limited to 'src/expr')
-rw-r--r--src/expr/node_manager.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/expr/node_manager.cpp b/src/expr/node_manager.cpp
index e9e92a5b1..66a56b2ab 100644
--- a/src/expr/node_manager.cpp
+++ b/src/expr/node_manager.cpp
@@ -791,7 +791,6 @@ Node NodeManager::mkBooleanTermVariable() {
}
Node NodeManager::mkNullaryOperator(const TypeNode& type, Kind k) {
- //FIXME : this is not correct for multitheading
std::map< TypeNode, Node >::iterator it = d_unique_vars[k].find( type );
if( it==d_unique_vars[k].end() ){
Node n = NodeBuilder<0>(this, k).constructNode();
@@ -799,10 +798,8 @@ Node NodeManager::mkNullaryOperator(const TypeNode& type, Kind k) {
//setAttribute(n, TypeCheckedAttr(), true);
d_unique_vars[k][type] = n;
Assert( n.getMetaKind() == kind::metakind::NULLARY_OPERATOR );
- Trace("ajr-temp") << this << "...made nullary operator " << n << " " << &n << " " << type << std::endl;
return n;
}else{
- Trace("ajr-temp") << this << "...reuse nullary operator " << it->second << " " << &( it->second ) << std::endl;
return it->second;
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback