mirror of
https://github.com/Z3Prover/z3
synced 2025-04-26 10:35:33 +00:00
remove mk_or_reduced
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
e32448d7ea
commit
7e91fb5c15
6 changed files with 53 additions and 120 deletions
|
@ -2058,13 +2058,6 @@ app * ast_manager::mk_app(func_decl * decl, unsigned num_args, expr * const * ar
|
|||
return r;
|
||||
}
|
||||
|
||||
expr* ast_manager::mk_or_reduced(unsigned n, expr* const* args) {
|
||||
switch (n) {
|
||||
case 0: return mk_false();
|
||||
case 1: return args[0];
|
||||
default: return mk_or(n, args);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
func_decl * ast_manager::mk_fresh_func_decl(symbol const & prefix, symbol const & suffix, unsigned arity,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue