fog/test/clustering/utils.py

12 lines
403 B
Python
Raw Normal View History

2018-06-11 15:00:59 +00:00
# =============================================================================
# Fog Clustering Unit Tests Utilities
# =============================================================================
class Clusters(object):
def __init__(self, clusters):
self.groups = set(tuple(sorted(values)) for values in clusters)
def __eq__(self, other):
return self.groups == other.groups