pub unsafe extern "C" fn Z3_solver_check_assumptions(
    c: Z3_context,
    s: Z3_solver,
    num_assumptions: c_uint,
    assumptions: *const Z3_ast
) -> Z3_lbool
Expand description

Check whether the assertions in the given solver and optional assumptions are consistent or not.

The function Z3_solver_get_unsat_core retrieves the subset of the assumptions used in the unsatisfiability proof produced by Z3.

See also: