HDFSGraphLoader hdfsLoader = new HDFSGraphLoader(location, new EdgeProcessor<Float>() {
long counter = 0;
public Float receiveEdge(int from, int to, String token) {
try {
sharder.addEdge(from, to, token);
counter++;
if (counter % 100000 == 0) {
setStatusString("Preprocessing, read " + counter + " edges");
}
} catch (IOException e) {