mirror of
https://github.com/Z3Prover/z3
synced 2025-08-20 18:20:22 +00:00
Merge branch 'upstream-master' into develop
Conflicts: src/ast/rewriter/seq_rewriter.cpp src/ast/seq_decl_plugin.h
This commit is contained in:
commit
d2ae94935e
10 changed files with 516 additions and 131 deletions
|
@ -329,13 +329,8 @@ br_status seq_rewriter::mk_app_core(func_decl * f, unsigned num_args, expr * con
|
|||
switch(f->get_decl_kind()) {
|
||||
|
||||
case OP_SEQ_UNIT:
|
||||
// TODO configuration param
|
||||
if (true) {
|
||||
SASSERT(num_args == 1);
|
||||
return mk_seq_unit(args[0], result);
|
||||
} else {
|
||||
return BR_FAILED;
|
||||
}
|
||||
SASSERT(num_args == 1);
|
||||
return mk_seq_unit(args[0], result);
|
||||
case OP_SEQ_EMPTY:
|
||||
return BR_FAILED;
|
||||
case OP_RE_PLUS:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue