3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 19:35:50 +00:00

remove watch, hoist orbit to track used variables

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-01-02 00:39:50 -08:00
parent 1d0572354b
commit c1032c3403
6 changed files with 46 additions and 117 deletions

View file

@ -49,6 +49,7 @@ std::ostream& bit_matrix::row::display(std::ostream& out) const {
void bit_matrix::reset(unsigned num_columns) {
m_region.reset();
m_rows.reset();
m_num_columns = num_columns;
m_num_chunks = (num_columns + 63)/64;
}