for(CmpVertex vert:referenceGraph.transitionMatrix.keySet())
if (!vert.isAccept())
throw new IllegalArgumentException("test set generation should not be attempted on an automaton with reject-states");
assert numberOfSeq > 0 && seqLength > 0;
RandomPathGenerator pathGen = new RandomPathGenerator(referenceGraph,new Random(0),seqLength,referenceGraph.getInit());
pathGen.generateRandomPosNeg(numberOfSeq, 1, false, null, true,true,null,null);
return pathGen.getAllSequences(0).getData(PTASequenceEngine.truePred);
/*
Collection<List<Label>> evaluationTestSet = referenceGraph.wmethod.getFullTestSet(1);
RandomPathGenerator pathGen = new RandomPathGenerator(referenceGraph,new Random(0),5,referenceGraph.getInit());