You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am implementing homomorphism counting functionality, and noticed that currently the function make_nice_tree_decomposition does not work correctly for $K_{3}$ and $K_{2, 5}$:
graph=graphs.CompleteBipartiteGraph(2, 5) # replace by `graphs.CompleteGraph(3)` for the triangletree_decomp=graph.treewidth(certificate=True)
nice_tree_decomp=make_nice_tree_decomposition(graph, tree_decomp)
root=sorted(nice_tree_decomp)[0]
dir_labelled_TD=label_nice_tree_decomposition(nice_tree_decomp, root)
dir_labelled_TD.plot()