(self, obj)
| 114 | return 0 |
| 115 | |
| 116 | def is_voverlap(self, obj): |
| 117 | assert isinstance(obj, LTComponent) |
| 118 | return obj.y0 <= self.y1 and self.y0 <= obj.y1 |
| 119 | |
| 120 | def vdistance(self, obj): |
| 121 | assert isinstance(obj, LTComponent) |
no outgoing calls
no test coverage detected