3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-09 00:35:47 +00:00

Improve intra-doc linking.

This commit is contained in:
Bruce Mitchener 2018-11-21 06:55:47 +07:00
parent 2cc654081c
commit 236f85d82b
3 changed files with 98 additions and 0 deletions

View file

@ -253,6 +253,9 @@ extern "C" {
/**
\brief Set parameters on fixedpoint context.
\sa Z3_fixedpoint_get_help
\sa Z3_fixedpoint_get_param_descrs
def_API('Z3_fixedpoint_set_params', VOID, (_in(CONTEXT), _in(FIXEDPOINT), _in(PARAMS)))
*/
void Z3_API Z3_fixedpoint_set_params(Z3_context c, Z3_fixedpoint f, Z3_params p);
@ -260,6 +263,9 @@ extern "C" {
/**
\brief Return a string describing all fixedpoint available parameters.
\sa Z3_fixedpoint_get_param_descrs
\sa Z3_fixedpoint_set_params
def_API('Z3_fixedpoint_get_help', STRING, (_in(CONTEXT), _in(FIXEDPOINT)))
*/
Z3_string Z3_API Z3_fixedpoint_get_help(Z3_context c, Z3_fixedpoint f);
@ -267,6 +273,9 @@ extern "C" {
/**
\brief Return the parameter description set for the given fixedpoint object.
\sa Z3_fixedpoint_get_help
\sa Z3_fixedpoint_set_params
def_API('Z3_fixedpoint_get_param_descrs', PARAM_DESCRS, (_in(CONTEXT), _in(FIXEDPOINT)))
*/
Z3_param_descrs Z3_API Z3_fixedpoint_get_param_descrs(Z3_context c, Z3_fixedpoint f);
@ -278,6 +287,9 @@ extern "C" {
\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)))
*/
Z3_string Z3_API Z3_fixedpoint_to_string(
@ -295,6 +307,9 @@ extern "C" {
\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)))
*/
Z3_ast_vector Z3_API Z3_fixedpoint_from_string(Z3_context c,
@ -310,6 +325,9 @@ extern "C" {
\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)))
*/
Z3_ast_vector Z3_API Z3_fixedpoint_from_file(Z3_context c,