summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/quantifiers_attributes.cpp
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2014-08-29 16:06:50 +0200
committerajreynol <andrew.j.reynolds@gmail.com>2014-08-29 16:06:50 +0200
commite9fb730333b2719cddaa0a9209aa7953d7f30b0b (patch)
treeda178be240ac8121635bed7cdfde8c58449e65a5 /src/theory/quantifiers/quantifiers_attributes.cpp
parent4397bf2a96fabe124ebd18e9ae9957689852afb3 (diff)
Set instantiation level on skolemized bodies of quantifiers. Rename inst-level attribute to quant-inst-max-level
Diffstat (limited to 'src/theory/quantifiers/quantifiers_attributes.cpp')
-rw-r--r--src/theory/quantifiers/quantifiers_attributes.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/quantifiers/quantifiers_attributes.cpp b/src/theory/quantifiers/quantifiers_attributes.cpp
index b41987923..8d479c29e 100644
--- a/src/theory/quantifiers/quantifiers_attributes.cpp
+++ b/src/theory/quantifiers/quantifiers_attributes.cpp
@@ -34,7 +34,7 @@ void QuantifiersAttributes::setUserAttribute( const std::string& attr, Node n, s
Trace("quant-attr") << "Set conjecture " << n << std::endl;
ConjectureAttribute ca;
n.setAttribute( ca, true );
- }else if( attr=="inst-level" ){
+ }else if( attr=="quant-inst-max-level" ){
Assert( node_values.size()==1 );
uint64_t lvl = node_values[0].getConst<Rational>().getNumerator().getLong();
Trace("quant-attr") << "Set instantiation level " << n << " to " << lvl << std::endl;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback