User Portlet User Portlet

Discussions
How is FindGraphPartition computed in the latest Mathematica release? Mathematica credits METIS, but I do not know which METIS program is being executed when I run this function. I appreciate your response in advance.
Thank you for the reply! The code doesn't preserve vertex weights if you add them. The following will give unweighted subgraphs: g1 = Graph[{1 \[UndirectedEdge] 2, 2 \[UndirectedEdge] 3, 3 \[UndirectedEdge] 1, 2 \[UndirectedEdge] 4, 4...
I've read the documentation on this and other functions, but I wondered how it is programmed (precisely what it is doing behind the scenes). I fed the function a weighted graph and it partitioned the graph into areas of approximately equal weight,...
The kernel was evaluating locally. I changed it to global, and now the problem is resolved. Thank you for all of your help!
The only problem with this code is that it doesn't create a weighted graph. I still have yet to find out how to assign the vertex weights. I thought that I would replace VertexSize with VertexWeight and remove the 0.1, but this does not work. How can...