// This file is part of KeY - Integrated Deductive Software Design
// Copyright (C) 2001-2007 Universitaet Karlsruhe, Germany
// Universitaet Koblenz-Landau, Germany
// Chalmers University of Technology, Sweden
//
// The KeY system is protected by the GNU General Public License.
// See LICENSE.TXT for details.
package de.uka.ilkd.key.unittest.simplify.ast;
import de.uka.ilkd.key.util.*;
public class Mul extends FunctionTerm{
public Mul(ExtList l){
super(Function.MUL, l);
}
}
|