The symbols for the bound variables. @throws Z3Exception
()
| 40 | * @throws Z3Exception |
| 41 | **/ |
| 42 | public Symbol[] getBoundVariableNames() |
| 43 | { |
| 44 | int n = getNumBound(); |
| 45 | Symbol[] res = new Symbol[n]; |
| 46 | for (int i = 0; i < n; i++) |
| 47 | res[i] = Symbol.create(getContext(), Native.getQuantifierBoundName( |
| 48 | getContext().nCtx(), getNativeObject(), i)); |
| 49 | return res; |
| 50 | } |
| 51 | |
| 52 | /** |
| 53 | * The sorts of the bound variables. |
nothing calls this directly
no test coverage detected