mirror of
https://github.com/Z3Prover/z3
synced 2025-04-25 01:55:32 +00:00
model-add/del
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
3de8c193ea
commit
caaf0ba33c
28 changed files with 271 additions and 251 deletions
|
@ -2222,11 +2222,13 @@ namespace smt2 {
|
|||
}
|
||||
|
||||
void parse_model_del() {
|
||||
func_decl* f = parse_func_decl_ref();
|
||||
check_rparen("invalid model-del, ')' expected");
|
||||
m_ctx.model_del(f);
|
||||
m_ctx.print_success();
|
||||
next();
|
||||
symbol id = curr_id();
|
||||
func_decl * f = m_ctx.find_func_decl(id);
|
||||
m_ctx.model_del(f);
|
||||
next();
|
||||
check_rparen_next("invalid model-del, ')' expected");
|
||||
m_ctx.print_success();
|
||||
}
|
||||
|
||||
void parse_define_fun_rec() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue