summaryrefslogtreecommitdiff
path: root/src/theory/strings/extf_solver.cpp
diff options
context:
space:
mode:
authorGereon Kremer <nafur42@gmail.com>2021-11-08 17:00:35 -0800
committerGitHub <noreply@github.com>2021-11-09 01:00:35 +0000
commit932c33baa92bd45377b872eaec91b2c7721ff916 (patch)
treea463df3492b25c2d22acaa823f4640c988d9ddb3 /src/theory/strings/extf_solver.cpp
parente5bbc45d20caf51e7df8288d51f20eb12da72aba (diff)
Remove more static option accesses (#7582)
This PR removes more than half of the remaining static option accesses options::foo() from the theory solvers.
Diffstat (limited to 'src/theory/strings/extf_solver.cpp')
-rw-r--r--src/theory/strings/extf_solver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/strings/extf_solver.cpp b/src/theory/strings/extf_solver.cpp
index 6e2f60c6d..cbd67f232 100644
--- a/src/theory/strings/extf_solver.cpp
+++ b/src/theory/strings/extf_solver.cpp
@@ -325,7 +325,7 @@ void ExtfSolver::checkExtfEval(int effort)
<< " get symbolic definition..." << std::endl;
Node nrs;
// only use symbolic definitions if option is set
- if (options::stringInferSym())
+ if (options().strings.stringInferSym)
{
nrs = d_termReg.getSymbolicDefinition(sn, exps);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback