I am trying to implement a heuristic solution for defining classes of isomorphic graphs from a given set of graphs. I am currently tagged for each node with a multiset of degrees of its neighbors (WL algorithm).
This obviously creates false positives for cases such as degree regular graphs. I was hoping to find another inexpensive realistic (temporal and spatial) heuristic that could cross the corner cases of the WL algorithm. In fact, I am looking for a pair of easily implementable heuristics that between them give marginal false positives.
What heuristics other than the WL algorithm should I look for?
Thank!
source
share