(self)
| 2955 | assert e.decl().name() == "or" |
| 2956 | |
| 2957 | def test_app_children(self): |
| 2958 | f = Function("f", IntSort(), IntSort(), IntSort()) |
| 2959 | x, y = Ints("x y") |
| 2960 | e = f(x, y) |
| 2961 | assert is_app(e) |
| 2962 | assert e.num_args() == 2 |
| 2963 | assert e.decl().name() == "f" |
| 2964 | |
| 2965 | def test_select_children(self): |
| 2966 | a = Array("a", IntSort(), IntSort()) |