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

Use bool literals instead of 0/1.

This commit is contained in:
Bruce Mitchener 2018-10-17 22:42:57 +07:00
parent 8431a54190
commit dda62ae78c
5 changed files with 25 additions and 25 deletions

View file

@ -220,7 +220,7 @@ lbool lackr::lazy() {
lackr_model_constructor mc(m_m, m_info);
push_abstraction();
unsigned ackr_head = 0;
while (1) {
while (true) {
m_st.m_it++;
checkpoint();
TRACE("lackr", tout << "lazy check: " << m_st.m_it << "\n";);