fixedpoint_from_string method

Z3_ast_vector fixedpoint_from_string(
  1. Z3_context c,
  2. Z3_fixedpoint f,
  3. Z3_string s
)

\brief Parse an SMT-LIB2 string with fixedpoint rules. Add the rules to the current fixedpoint context. Return the set of queries in the string.

\param c - context. \param f - fixedpoint context. \param s - string containing SMT2 specification.

\sa Z3_fixedpoint_from_file \sa Z3_fixedpoint_to_string

def_API('Z3_fixedpoint_from_string', AST_VECTOR, (_in(CONTEXT), _in(FIXEDPOINT), _in(STRING)))

Implementation

Z3_ast_vector fixedpoint_from_string(
  Z3_context c,
  Z3_fixedpoint f,
  Z3_string s,
) {
  return _fixedpoint_from_string(
    c,
    f,
    s,
  );
}