mirror of
https://github.com/Z3Prover/z3
synced 2025-07-19 10:52:02 +00:00
DoC: add slow path to emptiness detection that uses SMT solving
Signed-off-by: Nuno Lopes <a-nlopes@microsoft.com>
This commit is contained in:
parent
938a5adafa
commit
1606359dc9
6 changed files with 25 additions and 43 deletions
|
@ -307,7 +307,7 @@ namespace datalog {
|
|||
idx_vector::const_iterator end=m_controls.end();
|
||||
for(; it != end; ++it) {
|
||||
reg_idx r = *it;
|
||||
if (ctx.reg(r) && !ctx.reg(r)->empty()) {
|
||||
if (ctx.reg(r) && !ctx.reg(r)->fast_empty()) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue