3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-11 05:30:51 +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

@ -54,7 +54,6 @@ Revision History:
#include"dl_mk_magic_symbolic.h"
#include"dl_context.h"
#include"fixedpoint_params.hpp"
namespace datalog {
@ -68,7 +67,7 @@ namespace datalog {
mk_magic_symbolic::~mk_magic_symbolic() { }
rule_set * mk_magic_symbolic::operator()(rule_set const & source) {
if (!m_ctx.get_params().magic()) {
if (!m_ctx.magic()) {
return 0;
}
context& ctx = source.get_context();