summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndres Noetzli <andres.noetzli@gmail.com>2018-12-07 07:48:38 -0800
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-12-07 09:48:38 -0600
commit7270b2a800c45fa87ef4cdcad8fc353ccb8cd471 (patch)
treefea7e8d4b73ff466dfa7eab674b0d3cdf4bed269 /src
parent136a30c2b8cb06d607c5544a3911f120216b3663 (diff)
Strings: Make EXTF_d inference more conservative (#2740)
Diffstat (limited to 'src')
-rw-r--r--src/theory/strings/theory_strings.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/strings/theory_strings.cpp b/src/theory/strings/theory_strings.cpp
index 9da6fd277..5179ddab3 100644
--- a/src/theory/strings/theory_strings.cpp
+++ b/src/theory/strings/theory_strings.cpp
@@ -1662,9 +1662,9 @@ void TheoryStrings::checkExtfEval( int effort ) {
<< ", const = " << einfo.d_const << std::endl;
for (const Node& nrcc : nrc)
{
- sendInference(einfo.d_exp,
- einfo.d_const == d_false ? nrcc.negate() : nrcc,
- effort == 0 ? "EXTF_d" : "EXTF_d-N");
+ sendInternalInference(einfo.d_exp,
+ einfo.d_const == d_false ? nrcc.negate() : nrcc,
+ effort == 0 ? "EXTF_d" : "EXTF_d-N");
}
}else{
to_reduce = nrc;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback