CmpVertex
init = expectedGraph.getInit(),
P1001 = expectedGraph.getVertex(Arrays.asList(new Label[]{lblInit})),
P1003 = expectedGraph.getVertex(Arrays.asList(new Label[]{lblInit,lblLock})),
reject = expectedGraph.getVertex(Arrays.asList(new Label[]{lblLock}));
expectedGraph.addTransition(expectedGraph.transitionMatrix.get(init),lblWrite,reject);
expectedGraph.addTransition(expectedGraph.transitionMatrix.get(init),lblCast,reject);
expectedGraph.addTransition(expectedGraph.transitionMatrix.get(init),lblRead,reject);
expectedGraph.addTransition(expectedGraph.transitionMatrix.get(init),lblUnlock,reject);
expectedGraph.addTransition(expectedGraph.transitionMatrix.get(P1001),lblCast,P1001);