(self)
| 2365 | assert all(is_real(r) for r in rs) |
| 2366 | |
| 2367 | def test_vector_names(self): |
| 2368 | xs = IntVector("x", 3) |
| 2369 | names = [x._ast.name for x in xs] |
| 2370 | assert names == ["x__0", "x__1", "x__2"] |
| 2371 | |
| 2372 | def test_vector_zero(self): |
| 2373 | assert IntVector("x", 0) == [] |
nothing calls this directly
no test coverage detected