mirror of
https://github.com/Z3Prover/z3
synced 2025-07-21 20:02:05 +00:00
fix crash in new clique code
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
6a9b5ea3af
commit
650a719298
1 changed files with 2 additions and 2 deletions
|
@ -102,7 +102,7 @@ public:
|
|||
max = std::max(max, std::max(np, p) + 1);
|
||||
}
|
||||
m_next.reserve(max);
|
||||
m_tc.reserve(max);
|
||||
m_tc.reserve(m_next.size());
|
||||
unsigned_vector clique;
|
||||
uint_set vars;
|
||||
for (unsigned i = 0; i < num_ps; ++i) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue