fsm.pairscores.computePairCompatibilityScore_general(null,Arrays.asList(new StatePair[]{
new StatePair(fsm.findVertex("I"),fsm.findVertex("A1")),new StatePair(fsm.findVertex("I"),fsm.findVertex("B1")),new StatePair(fsm.findVertex("I"),fsm.findVertex("C1"))
}), verticesToMerge);
LearnerGraph mergeOutcome = MergeStates.mergeCollectionOfVertices(fsm, null, verticesToMerge);
LearnerGraph expected = FsmParser.buildLearnerGraph("I-d->I-b->I-c->I / I-a->B2-b->B3-c->C1 / I-e->B2", "testPairCompatible_general_Gb",config,getLabelConverter());
DifferentFSMException diffEx = WMethod.checkM(expected, mergeOutcome);
if (diffEx != null)
throw diffEx;
}