We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9949f16 commit d64dc93Copy full SHA for d64dc93
src/api/z3_api.h
@@ -6559,6 +6559,11 @@ extern "C" {
6559
\brief Retrieve the unsat core for the last #Z3_solver_check_assumptions
6560
The unsat core is a subset of the assumptions \c a.
6561
6562
+ By default, the unsat core will not be minimized. Generation of a minimized
6563
+ unsat core can be enabled via the `"sat.core.minimize"` and `"smt.core.minimize"`
6564
+ settings for SAT and SMT cores respectively. Generation of minimized unsat cores
6565
+ will be more expensive.
6566
+
6567
def_API('Z3_solver_get_unsat_core', AST_VECTOR, (_in(CONTEXT), _in(SOLVER)))
6568
*/
6569
Z3_ast_vector Z3_API Z3_solver_get_unsat_core(Z3_context c, Z3_solver s);
0 commit comments