summaryrefslogtreecommitdiff
path: root/src/theory/strings/extf_solver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/strings/extf_solver.cpp')
-rw-r--r--src/theory/strings/extf_solver.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/strings/extf_solver.cpp b/src/theory/strings/extf_solver.cpp
index 6ab74cf9a..b04b88b31 100644
--- a/src/theory/strings/extf_solver.cpp
+++ b/src/theory/strings/extf_solver.cpp
@@ -54,7 +54,7 @@ ExtfSolver::ExtfSolver(context::Context* c,
d_extt->addFunctionKind(kind::STRING_STRCTN);
d_extt->addFunctionKind(kind::STRING_IN_REGEXP);
d_extt->addFunctionKind(kind::STRING_LEQ);
- d_extt->addFunctionKind(kind::STRING_CODE);
+ d_extt->addFunctionKind(kind::STRING_TO_CODE);
d_extt->addFunctionKind(kind::STRING_TOLOWER);
d_extt->addFunctionKind(kind::STRING_TOUPPER);
d_extt->addFunctionKind(kind::STRING_REV);
@@ -166,7 +166,7 @@ bool ExtfSolver::doReduction(int effort, Node n, bool& isCd)
// context-dependent because it depends on the polarity of n itself
isCd = true;
}
- else if (k != kind::STRING_CODE)
+ else if (k != kind::STRING_TO_CODE)
{
NodeManager* nm = NodeManager::currentNM();
Assert(k == STRING_SUBSTR || k == STRING_STRCTN || k == STRING_STRIDOF
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback