model_extrapolate method
\brief Extrapolates a model of a formula
def_API('Z3_model_extrapolate', AST, (_in(CONTEXT), _in(MODEL), _in(AST)))
Implementation
Z3_ast model_extrapolate(
Z3_context c,
Z3_model m,
Z3_ast fml,
) {
return _model_extrapolate(
c,
m,
fml,
);
}