//Visualiser.updateFrame(g, null);
LearnerGraph fsm = new LearnerGraph(g,config);
Collection<Collection<CmpVertex>> result = new LinkedList<Collection<CmpVertex>>();
int score = -2;
//Visualiser.waitForKey();
score = fsm.pairscores.computePairCompatibilityScore_general(new StatePair(fsm.findVertex(new VertexID("A")),fsm.findVertex(new VertexID("B"))),result);
Assert.assertEquals(expectedScore, score);
if (score >=0)
matchCollectionsOfVertices(result, expectedSrc);
result.clear();score = -2;
score = fsm.pairscores.computePairCompatibilityScore_general(new StatePair(fsm.findVertex(new VertexID("A")),fsm.findVertex(new VertexID("B"))),result);
Assert.assertEquals(expectedScore, score);
if (score >=0)
matchCollectionsOfVertices(result, expectedSrc);
}