mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
include recursive functions to models. Issue #898
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
6f68355fbc
commit
854bb2197f
2 changed files with 7 additions and 3 deletions
|
@ -374,6 +374,11 @@ public:
|
|||
}
|
||||
}
|
||||
|
||||
void fill(unsigned sz, T const & elem) {
|
||||
resize(sz);
|
||||
fill(sz, elem);
|
||||
}
|
||||
|
||||
bool contains(T const & elem) const {
|
||||
const_iterator it = begin();
|
||||
const_iterator e = end();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue