-
Hi, Suppose I have a bipartite graph
If I am correct,
So, for an undirected bipartite graph, do we need two small graphs with different adjacency matrices to describe it? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Yes, you will need to use two adjacency matrices. Luckily, the reverse adjacency matrix is just the transpose: edge_index_rev = edge_index.flip([0]) |
Beta Was this translation helpful? Give feedback.
Yes, you will need to use two adjacency matrices. Luckily, the reverse adjacency matrix is just the transpose: