I am trying to test some graph partitioning models (they come from the real world, where the graph is slowly self-separating). To do this, I need to be able to evenly distribute this graph among adjacent components (we are also assigned a graph). If the adjacency criterion were not required, I believe that this will be a problem of random partitioning of the set, which can be combinatorially analyzed. Does anyone know of any way to randomly partition graphs into subgraphs (i.e. randomly try one section) or, if this method is not known, randomly try a set of elements? The method of randomizing the number of sections and then randomizing the membership will not work, because for each section size there is a different number of possible sections.
source share