/* Java class that includes methods that solve a few DFA decision problems. ** ** Authors: R. McCloskey and < STUDENT's NAME > ** Collaborated with: ... ** Known defects: ... */ public class DFA_Utils { /* Decides the question of whether any prefix of x is a member ** of L(M). */ public static boolean hasMemberPrefix(DFA M, int[] x) { return false; // STUB } /* Decides the question of whether x is a suffix of any member ** of L(M). */ public static boolean isSuffixOfMember(DFA M, int[] x) { return false; // STUB } /* Decides the question of whether x is a substring of any member ** of L(M). */ public static boolean isSubstringOfMember(DFA M, int[] x) { return false; // STUB } }