summaryrefslogtreecommitdiff
path: root/src/smt
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-03-11 13:01:42 -0500
committerGitHub <noreply@github.com>2020-03-11 11:01:42 -0700
commit8a56e62da0a8940f0ae1ee9575398e5f21660097 (patch)
tree81a1610923265f0ece570f47edd964ac531776e6 /src/smt
parentac5ef49e14154daee4200783b57584febb726a4e (diff)
Remove experimental symmetry breaker (#4005)
This never impacted performance positively. Fixes #3997 and fixes #4015. There was a folder that the symmetry breaker was used on regress1/sym. These are simple examples that show when it is possible to find symmetries in SMT; the symmetry breaker is not critical for solving these. For now I'm leaving them as regressions documenting possible benchmarks to target if we revisit this technique.
Diffstat (limited to 'src/smt')
-rw-r--r--src/smt/smt_engine.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/smt/smt_engine.cpp b/src/smt/smt_engine.cpp
index bfb126e9e..e4e582b6e 100644
--- a/src/smt/smt_engine.cpp
+++ b/src/smt/smt_engine.cpp
@@ -3454,12 +3454,6 @@ void SmtEnginePrivate::processAssertions() {
Trace("smt-proc") << "SmtEnginePrivate::processAssertions() : post-simplify" << endl;
dumpAssertions("post-simplify", d_assertions);
- if (options::symmetryBreakerExp() && !options::incrementalSolving())
- {
- // apply symmetry breaking if not in incremental mode
- d_passes["sym-break"]->apply(&d_assertions);
- }
-
if(options::doStaticLearning()) {
d_passes["static-learning"]->apply(&d_assertions);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback