With the closing of #216, the performance of unsat-sat degrades. We changed it so that the solver will iteratively increase the lower bound by one each call. However, we can have the following situation:
- We prove that
[x <= 5] -> false
- Propagation can infer that
[x >= 6] /\ ... -> [x >= 20]
- Now we don't need to prove
[x <= 6] -> false, ..., [x <= 18] -> false