for(int i=0;i < 12;++i)
initSet = initSet.crossWithSet(alphabet);
// Second, we run them on both graphs
PosNegPrecisionRecall bruteForcePR = computePrecisionRecall(graph, sequences);
PTA_computePrecisionRecall precRec = new PTA_computePrecisionRecall(graph);
precRec.crossWith(sequences);
PosNegPrecisionRecall actualPR = precRec.getPosNegPrecisionRecallNum();
// Third, we compare precision/recall computed in two different ways
assertEquals("pos precision",bruteForcePR.getPosprecision(), actualPR.getPosprecision(),Configuration.fpAccuracy);
assertEquals("pos recall",bruteForcePR.getPosrecall(), actualPR.getPosrecall(),Configuration.fpAccuracy);
assertEquals("neg precision",bruteForcePR.getNegprecision(), actualPR.getNegprecision(),Configuration.fpAccuracy);
assertEquals("neg recall",bruteForcePR.getNegrecall(), actualPR.getNegrecall(),Configuration.fpAccuracy);
}