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:
parent
7a3308110c
commit
7f29674842
6 changed files with 10 additions and 0 deletions
|
@ -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());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue