mirror of
https://github.com/Z3Prover/z3
synced 2025-08-03 09:50:23 +00:00
add accessors for implied values to API
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
4628cb8e79
commit
59d8895d15
23 changed files with 347 additions and 2 deletions
|
@ -361,6 +361,18 @@ namespace {
|
|||
}
|
||||
}
|
||||
|
||||
expr_ref get_implied_value(expr* e) override {
|
||||
return m_context.get_implied_value(e);
|
||||
}
|
||||
|
||||
expr_ref get_implied_lower_bound(expr* e) override {
|
||||
return m_context.get_implied_lower_bound(e);
|
||||
}
|
||||
|
||||
expr_ref get_implied_upper_bound(expr* e) override {
|
||||
return m_context.get_implied_upper_bound(e);
|
||||
}
|
||||
|
||||
bool fds_intersect(func_decl_set & pattern_fds, func_decl_set & assrtn_fds) {
|
||||
for (func_decl * fd : pattern_fds) {
|
||||
if (assrtn_fds.contains(fd))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue