GraphJob job = BipartiteMatching.createJob(new String[] { INPUT, OUTPUT,
"30", "2", seed }, conf);
job.setPartitioner(CustomTextPartitioner.class);
long startTime = System.currentTimeMillis();
if (job.waitForCompletion(true)) {
System.out.println("Job Finished in "
+ (System.currentTimeMillis() - startTime) / 1000.0 + " seconds");
}
verifyResult();