Configuration config = Configuration.getDefaultConfiguration().copy();
Random rnd=new Random(0);
for(int states=1;states < 100;states++)
{
final int alphabet = 2*states;
MachineGenerator mg = new MachineGenerator(states, 400 , (int)Math.round((double)states/5));mg.setGenerateConnected(true);
LearnerGraph graph = mg.nextMachine(alphabet,-states, config, converter).pathroutines.buildDeterministicGraph();
LearnerGraph parsedOutcome = new LearnerGraph(config);
StatechumProcess.parseStatemachine(StatechumProcess.constructFSM(graph), parsedOutcome, converter,true);
DifferentFSMException diffException = WMethod.checkM(graph, parsedOutcome);
Assert.assertNull(diffException);