3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-09-04 00:58:07 +00:00

add option to bypass compression of unbound tails, issue #738

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2016-09-16 14:56:10 -07:00
parent 7a3308110c
commit 7f29674842
6 changed files with 10 additions and 0 deletions

View file

@ -344,6 +344,11 @@ namespace datalog {
rule_set * mk_unbound_compressor::operator()(rule_set const & source) {
// TODO mc
if (!m_context.compress_unbound()) {
return 0;
}
m_modified = false;
SASSERT(m_rules.empty());