final MarkovModel m = new MarkovModel(2,true,true);
new MarkovClassifier(m,graph).updateMarkov(true);
Assert.assertEquals(4,m.predictionsMatrix.size());
final LearnerGraph graph2 = FsmParser.buildLearnerGraph("A-d->B / A-c->A/ T-u->T-b->T","testPredictTransitionsFromStatesForward2",config, converter);
Helper.checkForCorrectException(new whatToRun() {
@Override
public void run() throws NumberFormatException
{
new MarkovClassifier(m, graph2).predictTransitionsFromState(graph2.findVertex("B"),Arrays.asList(new Label[]{lblA,lblB}),m.getChunkLen(),null);
}