The unsat core of the last Check. Remarks: The unsat core is a subset of Assertions The result is empty if Check was not invoked before, if its results was not UNSATISFIABLE, or if core production is disabled. @throws Z3Exception
()
| 332 | * @throws Z3Exception |
| 333 | **/ |
| 334 | public BoolExpr[] getUnsatCore() |
| 335 | { |
| 336 | |
| 337 | ASTVector core = new ASTVector(getContext(), Native.solverGetUnsatCore(getContext().nCtx(), getNativeObject())); |
| 338 | return core.ToBoolExprArray(); |
| 339 | } |
| 340 | |
| 341 | /** |
| 342 | * Retrieve currently inferred units. |
no test coverage detected