summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/equality_query.cpp
diff options
context:
space:
mode:
authorMathias Preiner <mathias.preiner@gmail.com>2019-12-17 13:43:44 -0800
committerGitHub <noreply@github.com>2019-12-17 13:43:44 -0800
commite9499c41f405df8b42fd9ae10004b1b91a869106 (patch)
treefa1475f43a3e61b8f6ffdcb903b65919eba28661 /src/theory/quantifiers/equality_query.cpp
parent9b2914ed9f7b14ecf535ffe9e1328d0fa042e072 (diff)
Generate code for options with modes. (#3561)
This commit adds support for code generation of options with modes (enums). From now on option enums can be specified in the corresponding *.toml files without the need of extra code. All option enums are now in the options namespace.
Diffstat (limited to 'src/theory/quantifiers/equality_query.cpp')
-rw-r--r--src/theory/quantifiers/equality_query.cpp16
1 files changed, 11 insertions, 5 deletions
diff --git a/src/theory/quantifiers/equality_query.cpp b/src/theory/quantifiers/equality_query.cpp
index f7fd13d4d..f72a0d1b4 100644
--- a/src/theory/quantifiers/equality_query.cpp
+++ b/src/theory/quantifiers/equality_query.cpp
@@ -111,9 +111,12 @@ Node EqualityQueryQuantifiersEngine::getInternalRepresentative(Node a,
}
}
}
- if( options::quantRepMode()==quantifiers::QUANT_REP_MODE_EE ){
+ if (options::quantRepMode() == options::QuantRepMode::EE)
+ {
return r;
- }else{
+ }
+ else
+ {
TypeNode v_tn = q.isNull() ? a.getType() : q[0][index].getType();
std::map<Node, Node>& v_int_rep = d_int_rep[v_tn];
std::map<Node, Node>::const_iterator itir = v_int_rep.find(r);
@@ -239,11 +242,14 @@ int EqualityQueryQuantifiersEngine::getRepScore(Node n,
return options::instLevelInputOnly() ? -1 : 0;
}
}else{
- if( options::quantRepMode()==quantifiers::QUANT_REP_MODE_FIRST ){
+ if (options::quantRepMode() == options::QuantRepMode::FIRST)
+ {
//score prefers earliest use of this term as a representative
return d_rep_score.find( n )==d_rep_score.end() ? -1 : d_rep_score[n];
- }else{
- Assert(options::quantRepMode() == quantifiers::QUANT_REP_MODE_DEPTH);
+ }
+ else
+ {
+ Assert(options::quantRepMode() == options::QuantRepMode::DEPTH);
return quantifiers::TermUtil::getTermDepth( n );
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback