The set of asserted formulas. @throws Z3Exception
()
| 220 | * @throws Z3Exception |
| 221 | **/ |
| 222 | public BoolExpr[] getAssertions() |
| 223 | { |
| 224 | ASTVector assrts = new ASTVector(getContext(), Native.solverGetAssertions(getContext().nCtx(), getNativeObject())); |
| 225 | return assrts.ToBoolExprArray(); |
| 226 | } |
| 227 | |
| 228 | /** |
| 229 | * Checks whether the assertions in the solver are consistent or not. |
nothing calls this directly
no test coverage detected