Contents:
[docs]class Matcher: """ Skeleton parent class to perform the matching operation. """ def __init__(self, G): self.G = G [docs] def match(self, points): pass