Creates an integer constant.
(Symbol name)
| 795 | * Creates an integer constant. |
| 796 | **/ |
| 797 | public IntExpr mkIntConst(Symbol name) |
| 798 | { |
| 799 | return (IntExpr) mkConst(name, getIntSort()); |
| 800 | } |
| 801 | |
| 802 | /** |
| 803 | * Creates an integer constant. |
no test coverage detected