public class TestTransform322 {
private final String relabelFSM = "A-a->B-a->C-b->B-c->B";
/** Converts the existing checkM into its equivalent in version 322. */
public static DifferentFSMException checkM(FSMStructure A, String Ainit, FSMStructure B, String Binit)
{
DifferentFSMException result = null;
try {
TestFSMAlgo.checkM(A, B, Ainit, Binit);
} catch (DifferentFSMException e) {
result = e;
}