summaryrefslogtreecommitdiff
path: root/src/preprocessing
diff options
context:
space:
mode:
authorHaniel Barbosa <hanielbbarbosa@gmail.com>2019-07-30 10:21:01 -0500
committerGitHub <noreply@github.com>2019-07-30 10:21:01 -0500
commit5e3e9c156b20031a1b0e31489477b9b337d47cae (patch)
tree5fa3b91eadfa431387209348ea981b00291e6962 /src/preprocessing
parentaca0cef5cf1bcb882dce927a64917aa800dd8b27 (diff)
Code to activate hoelim preprocessing pass (#3129)
Diffstat (limited to 'src/preprocessing')
-rw-r--r--src/preprocessing/preprocessing_pass_registry.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/preprocessing/preprocessing_pass_registry.cpp b/src/preprocessing/preprocessing_pass_registry.cpp
index 34bae1224..36b3c6392 100644
--- a/src/preprocessing/preprocessing_pass_registry.cpp
+++ b/src/preprocessing/preprocessing_pass_registry.cpp
@@ -34,6 +34,7 @@
#include "preprocessing/passes/bv_to_bool.h"
#include "preprocessing/passes/extended_rewriter_pass.h"
#include "preprocessing/passes/global_negate.h"
+#include "preprocessing/passes/ho_elim.h"
#include "preprocessing/passes/int_to_bv.h"
#include "preprocessing/passes/ite_removal.h"
#include "preprocessing/passes/ite_simp.h"
@@ -148,6 +149,7 @@ PreprocessingPassRegistry::PreprocessingPassRegistry()
registerPassInfo("quantifier-macros", callCtor<QuantifierMacros>);
registerPassInfo("nl-ext-purify", callCtor<NlExtPurify>);
registerPassInfo("bool-to-bv", callCtor<BoolToBV>);
+ registerPassInfo("ho-elim", callCtor<HoElim>);
}
} // namespace preprocessing
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback