fixedpoint_from_file method
\brief Parse an SMT-LIB2 file with fixedpoint rules. Add the rules to the current fixedpoint context. Return the set of queries in the file.
\param c - context. \param f - fixedpoint context. \param s - path to file containing SMT2 specification.
\sa Z3_fixedpoint_from_string \sa Z3_fixedpoint_to_string
def_API('Z3_fixedpoint_from_file', AST_VECTOR, (_in(CONTEXT), _in(FIXEDPOINT), _in(STRING)))
Implementation
Z3_ast_vector fixedpoint_from_file(
Z3_context c,
Z3_fixedpoint f,
Z3_string s,
) {
return _fixedpoint_from_file(
c,
f,
s,
);
}