Create an integer numeral. @param v A string representing the Term value in decimal notation.
(String v)
| 2753 | * @param v A string representing the Term value in decimal notation. |
| 2754 | **/ |
| 2755 | public IntNum mkInt(String v) |
| 2756 | { |
| 2757 | |
| 2758 | return new IntNum(this, Native.mkNumeral(nCtx(), v, getIntSort() |
| 2759 | .getNativeObject())); |
| 2760 | } |
| 2761 | |
| 2762 | /** |
| 2763 | * Create an integer numeral. |
no test coverage detected