/// <summary>
        /// Removes the constraint, specified by name, from the collection.
        /// </summary>
        public void Remove(string name)
        {
            Constraint c = this[name];

            if (c == null)
            {
                throw ExceptionBuilder.ConstraintNotInTheTable(name);
            }
            Remove(c);
        }