The finite set of distinct values that represent the interpretation for sort s. @param s An uninterpreted sort @return An array of expressions, where each is an element of the universe of s @throws Z3Exception
(R s)
| 269 | * @throws Z3Exception |
| 270 | **/ |
| 271 | public <R extends Sort> Expr<R>[] getSortUniverse(R s) |
| 272 | { |
| 273 | |
| 274 | ASTVector nUniv = new ASTVector(getContext(), Native.modelGetSortUniverse( |
| 275 | getContext().nCtx(), getNativeObject(), s.getNativeObject())); |
| 276 | return (Expr<R>[]) nUniv.ToExprArray(); |
| 277 | } |
| 278 | |
| 279 | /** |
| 280 | * Conversion of models to strings. |
nothing calls this directly
no test coverage detected