Retrieves the interpretation (the assignment) of a in the model. @param a A Constant @return An expression if the constant has an interpretation in the model, null otherwise. @throws Z3Exception
(Expr<R> a)
| 36 | * @throws Z3Exception |
| 37 | **/ |
| 38 | public <R extends Sort> Expr<R> getConstInterp(Expr<R> a) |
| 39 | { |
| 40 | getContext().checkContextMatch(a); |
| 41 | return getConstInterp(a.getFuncDecl()); |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * Retrieves the interpretation (the assignment) of {@code f} in |
no test coverage detected