mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 10:25:18 +00:00
Optionally blast arrays
This changes the default behavior of always blasting arrays. The old behavior can be restored using fixedpoint.xform.array_blast=true
This commit is contained in:
parent
f5fa6b0bcb
commit
2c7a39d580
|
@ -319,6 +319,9 @@ namespace datalog {
|
|||
|
||||
rule_set * mk_array_blast::operator()(rule_set const & source) {
|
||||
|
||||
if (!m_ctx.array_blast ()) {
|
||||
return 0;
|
||||
}
|
||||
rule_set* rules = alloc(rule_set, m_ctx);
|
||||
rules->inherit_predicates(source);
|
||||
rule_set::iterator it = source.begin(), end = source.end();
|
||||
|
|
Loading…
Reference in a new issue