I'm currently having some issues when trying to split a graph with Metis in Grph. I have a graph and I try to get the collection of partitions with Metis this way:
Collection<IntSet> partition = myGraph.getGpmetisPartitionning(numBins, new Random());
And I get the following exception:
Exception in thread "main" java.lang.IllegalStateException: java.io.FileNotFoundException: cannot read a non-existing file /tmp/metis-input-file.part.4
at grph.algo.partitionning.metis.Gpmetis.compute(Gpmetis.java:255)
at grph.algo.partitionning.metis.Gpmetis.compute(Gpmetis.java:184)
...
It seems to me that the output file that was supposed to be created by metis is not there. Any suggestion?
Thanks,
Juan
--
You received this message because you are subscribed to the Google Groups "Grph: High Performance Graph Library for Java" group.
To unsubscribe from this group and stop receiving emails from it, send an email to grph-high-performance-gr...@googlegroups.com.
To post to this group, send an email to grph-high-performa...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Exception in thread "main" java.lang.IllegalArgumentException: graph has vertex 0 which is not supported by metis
at grph.algo.partitionning.metis.MetisWriter.printGraph(MetisWriter.java:53)
However, using the code I posted before, this exception is not shown.
Cheers,
Juan