summaryrefslogtreecommitdiff
path: root/src/preprocessing/preprocessing_pass_registry.cpp
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/preprocessing/preprocessing_pass_registry.cpp
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/preprocessing/preprocessing_pass_registry.cpp')
-rw-r--r--src/preprocessing/preprocessing_pass_registry.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/preprocessing/preprocessing_pass_registry.cpp b/src/preprocessing/preprocessing_pass_registry.cpp
index 9272bbb5a..e264c17e5 100644
--- a/src/preprocessing/preprocessing_pass_registry.cpp
+++ b/src/preprocessing/preprocessing_pass_registry.cpp
@@ -50,8 +50,6 @@
#include "preprocessing/passes/sort_infer.h"
#include "preprocessing/passes/static_learning.h"
#include "preprocessing/passes/sygus_inference.h"
-#include "preprocessing/passes/symmetry_breaker.h"
-#include "preprocessing/passes/symmetry_detect.h"
#include "preprocessing/passes/synth_rew_rules.h"
#include "preprocessing/passes/theory_preprocess.h"
#include "preprocessing/passes/unconstrained_simplifier.h"
@@ -143,7 +141,6 @@ PreprocessingPassRegistry::PreprocessingPassRegistry()
registerPassInfo("miplib-trick", callCtor<MipLibTrick>);
registerPassInfo("non-clausal-simp", callCtor<NonClausalSimp>);
registerPassInfo("ackermann", callCtor<Ackermann>);
- registerPassInfo("sym-break", callCtor<SymBreakerPass>);
registerPassInfo("ext-rew-pre", callCtor<ExtRewPre>);
registerPassInfo("theory-preprocess", callCtor<TheoryPreprocess>);
registerPassInfo("quantifier-macros", callCtor<QuantifierMacros>);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback