public Int16 Play(double[] inputs)
        {
            Int16 retVal = -1;

            if (inputs == null)
            {
                throw new NullReferenceException("Input array cannot be null");
            }

            retVal = Traveler.Play(inputs);

            return(retVal);
        }