The number of assertions in the solver. @throws Z3Exception
()
| 209 | * @throws Z3Exception |
| 210 | **/ |
| 211 | public int getNumAssertions() |
| 212 | { |
| 213 | ASTVector assrts = new ASTVector(getContext(), Native.solverGetAssertions(getContext().nCtx(), getNativeObject())); |
| 214 | return assrts.size(); |
| 215 | } |
| 216 | |
| 217 | /** |
| 218 | * The set of asserted formulas. |
nothing calls this directly
no test coverage detected