summaryrefslogtreecommitdiff
path: root/src/theory
diff options
context:
space:
mode:
authorAina Niemetz <aina.niemetz@gmail.com>2020-05-20 00:08:43 -0700
committerGitHub <noreply@github.com>2020-05-20 00:08:43 -0700
commitc3620b97ea7fac5dd16f5bd99f8dd10226c60d92 (patch)
tree21843f70fa2c2660a1ccb2109ee0d5a37c550840 /src/theory
parent927066eaecfc2c6f00aa1aca695b68e70164aae3 (diff)
CegqiBv: Clean up after renaming options. (#4487)
Diffstat (limited to 'src/theory')
-rw-r--r--src/theory/quantifiers/cegqi/ceg_bv_instantiator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/quantifiers/cegqi/ceg_bv_instantiator.cpp b/src/theory/quantifiers/cegqi/ceg_bv_instantiator.cpp
index fd06f9be4..f94fee66b 100644
--- a/src/theory/quantifiers/cegqi/ceg_bv_instantiator.cpp
+++ b/src/theory/quantifiers/cegqi/ceg_bv_instantiator.cpp
@@ -153,7 +153,7 @@ Node BvInstantiator::hasProcessAssertion(CegInstantiator* ci,
{
return Node::null();
}
- else if (options::cegqiBvIneqMode() == options::CbqiBvIneqMode::KEEP
+ else if (options::cegqiBvIneqMode() == options::CegqiBvIneqMode::KEEP
|| (pol && k == EQUAL))
{
return lit;
@@ -172,7 +172,7 @@ Node BvInstantiator::hasProcessAssertion(CegInstantiator* ci,
Trace("cegqi-bv") << " " << sm << " <> " << tm << std::endl;
Node ret;
- if (options::cegqiBvIneqMode() == options::CbqiBvIneqMode::EQ_SLACK)
+ if (options::cegqiBvIneqMode() == options::CegqiBvIneqMode::EQ_SLACK)
{
// if using slack, we convert constraints to a positive equality based on
// the current model M, e.g.:
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback