Retrieve currently inferred units. Remarks: This retrieves the set of literals that the solver has inferred at the current decision level after a check call. @return An array of Boolean expressions representing the inferred units @throws Z3Exception
()
| 347 | * @throws Z3Exception |
| 348 | **/ |
| 349 | public BoolExpr[] getUnits() |
| 350 | { |
| 351 | ASTVector units = new ASTVector(getContext(), Native.solverGetUnits(getContext().nCtx(), getNativeObject())); |
| 352 | return units.ToBoolExprArray(); |
| 353 | } |
| 354 | |
| 355 | /** |
| 356 | * Retrieve non-unit atomic formulas in the solver state. |
nothing calls this directly
no test coverage detected