Retrieve non-unit atomic formulas in the solver state. Remarks: This retrieves atomic formulas that are not units after a check call. @return An array of Boolean expressions representing the non-unit formulas @throws Z3Exception
()
| 360 | * @throws Z3Exception |
| 361 | **/ |
| 362 | public BoolExpr[] getNonUnits() |
| 363 | { |
| 364 | ASTVector nonUnits = new ASTVector(getContext(), Native.solverGetNonUnits(getContext().nCtx(), getNativeObject())); |
| 365 | return nonUnits.ToBoolExprArray(); |
| 366 | } |
| 367 | |
| 368 | /** |
| 369 | * Retrieve the solver decision trail. |
nothing calls this directly
no test coverage detected