qe_lite method
\brief Best-effort quantifier elimination
def_API ('Z3_qe_lite', AST, (_in(CONTEXT), _in(AST_VECTOR), _in(AST)))
Implementation
Z3_ast qe_lite(
Z3_context c,
Z3_ast_vector vars,
Z3_ast body,
) {
return _qe_lite(
c,
vars,
body,
);
}