mirror of
https://github.com/Z3Prover/z3
synced 2025-06-22 05:43:39 +00:00
relevancy level is queried during smt_setup, so it has to update the local parameter that tracks the min
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
17fb07875d
commit
055cf6c7b9
3 changed files with 10 additions and 6 deletions
|
@ -281,10 +281,10 @@ namespace smt {
|
|||
}
|
||||
|
||||
bool relevancy() const {
|
||||
return m_relevancy_lvl > 0;
|
||||
return relevancy_lvl() > 0;
|
||||
}
|
||||
|
||||
unsigned relevancy_lvl() const { return m_relevancy_lvl; }
|
||||
unsigned relevancy_lvl() const;
|
||||
|
||||
enode * get_enode(expr const * n) const {
|
||||
SASSERT(e_internalized(n));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue