mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
add auxiliary propagation
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
1e3c3dc48f
commit
11a048d5f9
6 changed files with 90 additions and 29 deletions
|
@ -93,6 +93,11 @@ public:
|
|||
return r;
|
||||
}
|
||||
|
||||
void reserve(unsigned v) {
|
||||
while (get_num_vars() <= v)
|
||||
mk_var();
|
||||
}
|
||||
|
||||
unsigned get_num_vars() const { return m_find.size(); }
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue