3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-28 17:08:45 +00:00

formatting updates

This commit is contained in:
Nikolaj Bjorner 2022-10-13 15:20:24 +02:00
parent 93e1db0b0b
commit 8a30128933

View file

@ -114,10 +114,9 @@ bool quasi_macros::fully_depends_on(app * a, quantifier * q) const {
if (is_var(arg)) if (is_var(arg))
bitset.set(to_var(arg)->get_idx(), true); bitset.set(to_var(arg)->get_idx(), true);
for (unsigned i = 0; i < bitset.size() ; i++) { for (unsigned i = 0; i < bitset.size() ; i++)
if (!bitset.get(i)) if (!bitset.get(i))
return false; return false;
}
return true; return true;
} }