Example #1
0
        public void adjust(int n)
        {
            Predicate temp = p;

            while (temp != null)
            {
                temp.adjust(n);
                temp = temp.nextP;
            }
        }