summaryrefslogtreecommitdiff
path: root/src/theory
diff options
context:
space:
mode:
authorTianyi Liang <tianyi-liang@uiowa.edu>2015-04-17 14:41:24 -0500
committerTianyi Liang <tianyi-liang@uiowa.edu>2015-04-17 14:41:24 -0500
commit4d359ce4470c44c3e7532edb6b60bcb61b51f862 (patch)
tree7483df423305f9d487a9e106e9b26da6a1448ef3 /src/theory
parentd60c406206e9ac414cde2c219a748d51a64d000b (diff)
Patch for Kshitij's fix on requriePhase
Diffstat (limited to 'src/theory')
-rw-r--r--src/theory/strings/theory_strings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/strings/theory_strings.cpp b/src/theory/strings/theory_strings.cpp
index 34ca52419..e8985e074 100644
--- a/src/theory/strings/theory_strings.cpp
+++ b/src/theory/strings/theory_strings.cpp
@@ -2283,7 +2283,7 @@ void TheoryStrings::checkDeqNF() {
for( unsigned k=(j+1); k<cols[i].size(); k++ ){
Assert( !d_conflict );
if( !areDisequal( cols[i][j], cols[i][k] ) ){
- sendSplit( cols[i][j], cols[i][k], "D-NORM", false );
+ sendSplit( cols[i][j], cols[i][k], "D-NORM", true );
return;
}else{
Trace("strings-solve") << "- Compare ";
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback