mirror of
https://github.com/Z3Prover/z3
synced 2025-08-28 05:58:55 +00:00
is glibc the new centos?
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
b7d1d03b08
commit
5d46ac0aca
3 changed files with 9 additions and 3 deletions
|
@ -107,7 +107,12 @@ namespace sat {
|
|||
use_list(ddfw& p, literal lit):
|
||||
p(p), i(lit.index()) {}
|
||||
unsigned const* begin() { return p.m_flat_use_list.c_ptr() + p.m_use_list_index[i]; }
|
||||
unsigned const* end() { return p.m_flat_use_list.c_ptr() + p.m_use_list_index[i+1]; }
|
||||
unsigned const* end() {
|
||||
if (p.m_use_list_index.size() <= i + 1) {
|
||||
std::cout << "out of bounds\n";
|
||||
}
|
||||
VERIFY(p.m_use_list_index.size() > i + 1); return p.m_flat_use_list.c_ptr() + p.m_use_list_index[i + 1];
|
||||
}
|
||||
};
|
||||
|
||||
void flatten_use_list();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue