(self)
| 2360 | assert all(is_bool(b) for b in bs) |
| 2361 | |
| 2362 | def test_real_vector(self): |
| 2363 | rs = RealVector("r", 4) |
| 2364 | assert len(rs) == 4 |
| 2365 | assert all(is_real(r) for r in rs) |
| 2366 | |
| 2367 | def test_vector_names(self): |
| 2368 | xs = IntVector("x", 3) |
nothing calls this directly
no test coverage detected