The symbols for the bound variables. @throws Z3Exception
()
| 110 | * @throws Z3Exception |
| 111 | **/ |
| 112 | public Symbol[] getBoundVariableNames() |
| 113 | { |
| 114 | int n = getNumBound(); |
| 115 | Symbol[] res = new Symbol[n]; |
| 116 | for (int i = 0; i < n; i++) |
| 117 | res[i] = Symbol.create(getContext(), Native.getQuantifierBoundName( |
| 118 | getContext().nCtx(), getNativeObject(), i)); |
| 119 | return res; |
| 120 | } |
| 121 | |
| 122 | /** |
| 123 | * The sorts of the bound variables. |
nothing calls this directly
no test coverage detected