Retrieve set of assertions added to fixedpoint context. @throws Z3Exception
()
| 273 | * @throws Z3Exception |
| 274 | **/ |
| 275 | public BoolExpr[] getAssertions() |
| 276 | { |
| 277 | ASTVector v = new ASTVector(getContext(), Native.fixedpointGetAssertions(getContext().nCtx(), getNativeObject())); |
| 278 | return v.ToBoolExprArray(); |
| 279 | } |
| 280 | |
| 281 | /** |
| 282 | * Fixedpoint statistics. |
nothing calls this directly
no test coverage detected