fixedpoint_to_string method
Z3_string
fixedpoint_to_string(
- Z3_context c,
- Z3_fixedpoint f,
- int num_queries,
- Pointer<
Z3_ast> queries,
\brief Print the current rules and background axioms as a string. \param c - context. \param f - fixedpoint context. \param num_queries - number of additional queries to print. \param queries - additional queries.
\sa Z3_fixedpoint_from_file \sa Z3_fixedpoint_from_string
def_API('Z3_fixedpoint_to_string', STRING, (_in(CONTEXT), _in(FIXEDPOINT), _in(UINT), _in_array(2, AST)))
Implementation
Z3_string fixedpoint_to_string(
Z3_context c,
Z3_fixedpoint f,
int num_queries,
ffi.Pointer<Z3_ast> queries,
) {
return _fixedpoint_to_string(
c,
f,
num_queries,
queries,
);
}