summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers_engine.cpp
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2015-06-13 16:06:49 +0200
committerajreynol <andrew.j.reynolds@gmail.com>2015-06-13 16:06:49 +0200
commita84ad01f18b860e22027622d3397367570a2523c (patch)
treeb186ec7cde4f9284ddc88a2285a5fde6a4d17fcc /src/theory/quantifiers_engine.cpp
parentae3524a11af209cf4186afc33598cff43a7e1cbf (diff)
Avoid instantiating with array constants.
Diffstat (limited to 'src/theory/quantifiers_engine.cpp')
-rw-r--r--src/theory/quantifiers_engine.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/theory/quantifiers_engine.cpp b/src/theory/quantifiers_engine.cpp
index 020a2e552..a2d68f7c9 100644
--- a/src/theory/quantifiers_engine.cpp
+++ b/src/theory/quantifiers_engine.cpp
@@ -1100,6 +1100,8 @@ Node EqualityQueryQuantifiersEngine::getInternalRepresentative( Node a, Node f,
r = getRepresentative( r );
}else{
if( r.getType().isSort() ){
+ //TODO : this can happen in rare cases
+ // say x:(Array Int U), select( x, 0 ), x assigned (const @u1).
Trace("internal-rep-warn") << "No representative for UF constant." << std::endl;
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback