Retrieve set of rules added to fixedpoint context. @throws Z3Exception
()
| 262 | * @throws Z3Exception |
| 263 | **/ |
| 264 | public BoolExpr[] getRules() |
| 265 | { |
| 266 | ASTVector v = new ASTVector(getContext(), Native.fixedpointGetRules(getContext().nCtx(), getNativeObject())); |
| 267 | return v.ToBoolExprArray(); |
| 268 | } |
| 269 | |
| 270 | /** |
| 271 | * Retrieve set of assertions added to fixedpoint context. |
nothing calls this directly
no test coverage detected