(self, kernel)
| 1098 | assert s.check() == sat # x == x |
| 1099 | |
| 1100 | def test_reset_clears(self, kernel): |
| 1101 | s = Solver() |
| 1102 | s.add(BoolVal(False)) |
| 1103 | assert s.check() == unsat |
| 1104 | s.reset() |
| 1105 | assert s.check() == sat |
| 1106 | |
| 1107 | def test_distinct_two(self, kernel): |
| 1108 | x, y = Ints("x y") |