(
self, points: list[Point], deps: EmptyDependency
)
| 2332 | return False |
| 2333 | |
| 2334 | def add_simtri_check( |
| 2335 | self, points: list[Point], deps: EmptyDependency |
| 2336 | ) -> list[Dependency]: |
| 2337 | if nm.same_clock(*[p.num for p in points]): |
| 2338 | return self.add_simtri(points, deps) |
| 2339 | return self.add_simtri2(points, deps) |
| 2340 | |
| 2341 | def add_contri_check( |
| 2342 | self, points: list[Point], deps: EmptyDependency |
no test coverage detected