Path 1: 328 calls (0.99)

LineSetStartCouple (328)

True (328)

1def __eq__(self, other: Any) -> bool:
2        if not isinstance(other, LineSetStartCouple):
3            return NotImplemented
4        return (
5            self.fst_lineset_index == other.fst_lineset_index
6            and self.snd_lineset_index == other.snd_lineset_index
7        )
            

Path 2: 2 calls (0.01)

LineSetStartCouple (2)

False (2)

1def __eq__(self, other: Any) -> bool:
2        if not isinstance(other, LineSetStartCouple):
3            return NotImplemented
4        return (
5            self.fst_lineset_index == other.fst_lineset_index
6            and self.snd_lineset_index == other.snd_lineset_index
7        )