How do I convert a hypergraph to a graph?

971 Views Asked by At

I have a partitioning algorithm that works only on graphs, but my input is in the form of a hypergraph. Is there any technique that maps a hypergraph to a graph?

1

There are 1 best solutions below

2
On BEST ANSWER

You could replace each hyperedge $e$ with a complete graph on the set of vertices in that hyperedge. That is the most natural way.