mirror of
https://github.com/Z3Prover/z3
synced 2025-05-08 00:05:46 +00:00
iterative deepening per recursive function
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
35eb6eccd1
commit
c0556b2f64
3 changed files with 52 additions and 45 deletions
|
@ -249,6 +249,11 @@ namespace recfun {
|
|||
return m_plugin->get_def(s);
|
||||
}
|
||||
|
||||
case_def& get_case_def(expr* e) {
|
||||
SASSERT(is_case_pred(e));
|
||||
return get_case_def(to_app(e)->get_name());
|
||||
}
|
||||
|
||||
case_def& get_case_def(symbol const & s) {
|
||||
SASSERT(m_plugin->has_case_def(s));
|
||||
return m_plugin->get_case_def(s);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue