model_extrapolate method

Z3_ast model_extrapolate(
  1. Z3_context c,
  2. Z3_model m,
  3. Z3_ast fml
)

\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,
  );
}