mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
try big M for linux build
This commit is contained in:
parent
1974c224ab
commit
0f7bebcbed
|
@ -36,6 +36,7 @@ protected:
|
|||
bool m_hoist_mul;
|
||||
bool m_ast_order;
|
||||
bool m_hoist_ite;
|
||||
ast_manager& M() { return Config::m; }
|
||||
|
||||
bool is_numeral(expr * n) const { return Config::is_numeral(n); }
|
||||
bool is_numeral(expr * n, numeral & r) const { return Config::is_numeral(n, r); }
|
||||
|
|
|
@ -51,7 +51,7 @@ expr * poly_rewriter<Config>::mk_add_app(unsigned num_args, expr * const * args)
|
|||
switch (num_args) {
|
||||
case 0: return mk_numeral(numeral(0));
|
||||
case 1: return args[0];
|
||||
default: return m.mk_app(get_fid(), add_decl_kind(), num_args, args);
|
||||
default: return M().mk_app(get_fid(), add_decl_kind(), num_args, args);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue