@Test
public final void testPrecisionRecall1()
{
// this graph gives the labelling to the sequences I add to the set of sequences with partialPTA.cross below.
LearnerGraph mach = buildLearnerGraph("A-a->A-b-#B","testPrecisionRecall1",mainConfiguration,converter);
PTASequenceEngine engine = new PTA_FSMStructure(mach,null);
SequenceSet partialPTA = engine.new SequenceSet();partialPTA.setIdentity();
partialPTA = partialPTA.cross(TestFSMAlgo.buildSet(new String[][] {
new String[] {"a","a","a"}, // +
new String[]{"b"} // -
},mainConfiguration,converter));