public override bool Decide(int[] input)
        {
            tm = new LAP_NDTM();
            tm.Setup();

            meap = new LAP_MEAP(tm);

            return(meap.Decide(input));
        }
        public override bool Decide(int[] input)
        {
            tm = new LAP_NDTM();
            tm.Setup();

            tm.Run(input);

            return(tm.Accepted);
        }