01: // This file is part of KeY - Integrated Deductive Software Design
02: // Copyright (C) 2001-2007 Universitaet Karlsruhe, Germany
03: // Universitaet Koblenz-Landau, Germany
04: // Chalmers University of Technology, Sweden
05: //
06: // The KeY system is protected by the GNU General Public License.
07: // See LICENSE.TXT for details.
08: //This file is part of KeY - Integrated Deductive Software Design
09: //Copyright (C) 2001-2003 Universitaet Karlsruhe, Germany
10: // and Chalmers University of Technology, Sweden
11: //
12: //The KeY system is protected by the GNU General Public License.
13: //See LICENSE.TXT for details.
14: //
15:
16: package de.uka.ilkd.key.logic.op;
17:
18: import de.uka.ilkd.key.logic.Name;
19: import de.uka.ilkd.key.logic.sort.ArrayOfSort;
20: import de.uka.ilkd.key.logic.sort.Sort;
21:
22: public class RigidFunction extends Function {
23: /**
24: * Creates a rigid function with given signature.
25: * @param name
26: * @param sort
27: * @param argSorts
28: */
29: public RigidFunction(Name name, Sort sort, Sort[] argSorts) {
30: super (name, sort, argSorts);
31: }
32:
33: /**
34: * Creates a rigid function with given signature.
35: * @param name
36: * @param sort
37: * @param argSorts
38: */
39: public RigidFunction(Name name, Sort sort, ArrayOfSort argSorts) {
40: super(name, sort, argSorts);
41: }
42: }
|