/** Non-existing vertices in a tentative automaton. */
@Test
public final void testPerformAugment_fail0()
{
final LearnerGraph graph = buildLearnerGraph("A-a->B-b->C", "testPerformAugment_fail0a",mainConfiguration,converter);
graph.transitionMatrix.put(AbstractLearnerGraph.generateNewCmpVertex(new VertexID(VertKind.NONEXISTING,90),mainConfiguration),graph.createNewRow());
Helper.checkForCorrectException(new whatToRun() { public @Override void run() throws IncompatibleStatesException {
LearnerGraph[] ifthenCollection = new LearnerGraph[]{buildLearnerGraph("A-a->B-a->B / T-b->N / B=THEN=T", "testPerformAugment_fail0b", mainConfiguration,converter)};
Transform.augmentFromIfThenAutomaton(graph, null, ifthenCollection, 2);
}},IllegalArgumentException.class,"non-existing vertices");
}