public static PurringMachine GetDefaultMachine()
        {
            PurringMachine m        = new PurringMachine();
            const bool     fromLeft = false;

            m.SetInstructions(GetIncrementBinaryValueInstructionSet(), fromLeft);
            m.SetTapeData("1111");
            m.Reset();
            return(m);
        }