mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
enable overloading resolution on define-fun declarations, fix #1199
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
05c4ea82ce
commit
082936bca6
6 changed files with 205 additions and 80 deletions
|
@ -257,7 +257,15 @@ namespace smt {
|
|||
return m_params;
|
||||
}
|
||||
|
||||
bool get_cancel_flag() { return !m_manager.limit().inc(); }
|
||||
bool get_cancel_flag() {
|
||||
if (m_manager.limit().inc()) {
|
||||
// get_simplifier().reset();
|
||||
return false;
|
||||
}
|
||||
else {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
region & get_region() {
|
||||
return m_region;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue