Source code for topologic.io.potential_edge_column_pair

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.


[docs]class PotentialEdgeColumnPair: def __init__(self, source, destination, score): self._source = source self._destination = destination self._score = score
[docs] def source(self): return self._source
[docs] def destination(self): return self._destination
[docs] def score(self): return self._score