(self)
| 2884 | assert e.decl().name() == "not" |
| 2885 | |
| 2886 | def test_ite_children(self): |
| 2887 | x = Int("x") |
| 2888 | p = Bool("p") |
| 2889 | e = If(p, x, IntVal(0)) |
| 2890 | assert e.num_args() == 3 |
| 2891 | assert e.decl().name() == "if" |
| 2892 | |
| 2893 | def test_distinct_children(self): |
| 2894 | x, y, z = Ints("x y z") |