DirectedSparseGraph learningOutcomeA = l.learnMachine();
//updateFrame(learningOutcome,g);
FSMStructure learntStructureA = WMethod.getGraphData(learningOutcomeA);
// Now do the same with ptasets instead of real sets
PTASequenceSet plusPTA = new PTASequenceSet();plusPTA.addAll(buildSet(plus));PTASequenceSet minusPTA = new PTASequenceSet();minusPTA.addAll(buildSet(minus));
l.init(plusPTA, minusPTA);
DirectedSparseGraph learningOutcomeB = l.learnMachine();
FSMStructure learntStructureB = WMethod.getGraphData(learningOutcomeB);
TestFSMAlgo.checkMBoolean(learntStructureA, learntStructureB, learntStructureA.init, learntStructureB.init);