summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/quant_util.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-02-03 08:51:26 -0600
committerGitHub <noreply@github.com>2020-02-03 08:51:26 -0600
commit413bd34cee7aad26b1138e4412b5ceb44ae74405 (patch)
tree4341ac1d9658e9086a951ec07910ef6f09d80b5d /src/theory/quantifiers/quant_util.cpp
parentbdb685d928d1f4bb570acdc6c8427217a6b6cbe3 (diff)
Example inference utility (#3670)
Diffstat (limited to 'src/theory/quantifiers/quant_util.cpp')
-rw-r--r--src/theory/quantifiers/quant_util.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/quantifiers/quant_util.cpp b/src/theory/quantifiers/quant_util.cpp
index 01f362d25..695d1835c 100644
--- a/src/theory/quantifiers/quant_util.cpp
+++ b/src/theory/quantifiers/quant_util.cpp
@@ -154,7 +154,7 @@ void QuantPhaseReq::getPolarity( Node n, int child, bool hasPol, bool pol, bool&
newPol = pol;
}else{
newHasPol = false;
- newPol = pol;
+ newPol = false;
}
}
@@ -170,7 +170,7 @@ void QuantPhaseReq::getEntailPolarity( Node n, int child, bool hasPol, bool pol,
newPol = !pol;
}else{
newHasPol = false;
- newPol = pol;
+ newPol = false;
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback