CharHeap

Results 6 comments of CharHeap

I very much appreciate the lively discussion to which I have little to nothing to add as I lack experience with the app (only recently started using it) and don't...

Hi! I was surprised to find that re-applying `canon_label` to a _canonized_ graph (using the relabelling given by `canon_label`) would not give the identity. So I guess this issue still...

Because the graph is simple (just 4 nodes) I'll leave it here: ``` g1 = Graph(number_of_vertices = 4, directed = False, adjacency_dict = { 0: [2, 3], 1: [2, 3],...

What seems to work for now is creating the canon graph from the certificate as described here: https://github.com/pdobsan/pynauty/issues/30#issuecomment-1564066767 for which `canon_label` returns the identity. In my case: ``` g_canon =...

P.S.: It was even possible to remove one direction of each undirected edge to get ``` g_canon_undirected = Graph(number_of_vertices=4, directed=False, adjacency_dict = { 0: [1, 2], 1: [3], 2: [3],...

> On Wed, Sep 20, 2023 at 01:43:45PM -0700, CharHeap wrote: What seems to work for now is creating the canon graph from the certificate as described here: [#30 (comment)](https://github.com/pdobsan/pynauty/issues/30#issuecomment-1564066767)...