Retrieve all names of parameters. @throws Z3Exception
()
| 60 | * @throws Z3Exception |
| 61 | **/ |
| 62 | public Symbol[] getNames() |
| 63 | { |
| 64 | int sz = Native.paramDescrsSize(getContext().nCtx(), getNativeObject()); |
| 65 | Symbol[] names = new Symbol[sz]; |
| 66 | for (int i = 0; i < sz; ++i) |
| 67 | { |
| 68 | names[i] = Symbol.create(getContext(), Native.paramDescrsGetName( |
| 69 | getContext().nCtx(), getNativeObject(), i)); |
| 70 | } |
| 71 | return names; |
| 72 | } |
| 73 | |
| 74 | /** |
| 75 | * The size of the ParamDescrs. |
nothing calls this directly
no test coverage detected