3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-11 13:40:52 +00:00

remove some dependencies on parameter file

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2013-09-12 20:22:26 -07:00
parent 8ab04fb05b
commit 10e203da43
8 changed files with 19 additions and 11 deletions

View file

@ -300,8 +300,7 @@ namespace datalog {
}
rule_set * mk_quantifier_abstraction::operator()(rule_set const & source) {
TRACE("dl", tout << "quantify " << source.get_num_rules() << " " << m_ctx.get_params().quantify_arrays() << "\n";);
if (!m_ctx.get_params().quantify_arrays()) {
if (!m_ctx.quantify_arrays()) {
return 0;
}
unsigned sz = source.get_num_rules();