The unsat core of the last Check. Remarks: The unsat core is a subset of Assumptions The result is empty if Check was not invoked before, if its results was not UNSATISFIABLE, or if core production is disabled. @throws Z3Exception
()
| 269 | * @throws Z3Exception |
| 270 | **/ |
| 271 | public BoolExpr[] getUnsatCore() |
| 272 | { |
| 273 | ASTVector core = new ASTVector(getContext(), Native.optimizeGetUnsatCore(getContext().nCtx(), getNativeObject())); |
| 274 | return core.ToBoolExprArray(); |
| 275 | } |
| 276 | |
| 277 | /** |
| 278 | * Declare an arithmetical maximization objective. |
nothing calls this directly
no test coverage detected