
/**
 * Information about a particular case of reduction
 * 
 * @author Nobo Komagata
 * @version 5/30/03
 */
public class Reduction
{
    public int productionID;
    public int handleLen;

    /**
     * Constructor for objects of class Reduction
     */
    public Reduction(int p, int h) {
        productionID = p;
        handleLen = h;
    }
}

