Creates a new constant function declaration.
(Symbol name, R range)
| 678 | * Creates a new constant function declaration. |
| 679 | **/ |
| 680 | public final <R extends Sort> FuncDecl<R> mkConstDecl(Symbol name, R range) |
| 681 | { |
| 682 | checkContextMatch(name); |
| 683 | checkContextMatch(range); |
| 684 | return new FuncDecl<>(this, name, null, range); |
| 685 | } |
| 686 | |
| 687 | /** |
| 688 | * Creates a new constant function declaration. |
no test coverage detected