(self)
| 4140 | assert isinstance(fp, Fixedpoint) |
| 4141 | |
| 4142 | def test_add_rule(self): |
| 4143 | fp = Fixedpoint() |
| 4144 | fp.add_rule(BoolVal(True)) |
| 4145 | assert len(fp._rules) == 1 |
| 4146 | |
| 4147 | def test_register_relation(self): |
| 4148 | fp = Fixedpoint() |
nothing calls this directly
no test coverage detected