mirror of
https://github.com/Z3Prover/z3
synced 2025-06-20 12:53:38 +00:00
documentation fixes
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
48c72d2c38
commit
5f527fa562
1 changed files with 10 additions and 10 deletions
|
@ -274,7 +274,7 @@ extern "C" {
|
||||||
Z3_ast Z3_API Z3_mk_fpa_fp(__in Z3_context c, __in Z3_ast sgn, __in Z3_ast exp, __in Z3_ast sig);
|
Z3_ast Z3_API Z3_mk_fpa_fp(__in Z3_context c, __in Z3_ast sgn, __in Z3_ast exp, __in Z3_ast sig);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
\brief Create a numeral of FloatingPoint sort from a float.
|
\brief Create a numeral of FloatingPoint sort from a float.
|
||||||
|
|
||||||
This function is used to create numerals that fit in a float value.
|
This function is used to create numerals that fit in a float value.
|
||||||
It is slightly faster than #Z3_mk_numeral since it is not necessary to parse a string.
|
It is slightly faster than #Z3_mk_numeral since it is not necessary to parse a string.
|
||||||
|
@ -292,20 +292,20 @@ extern "C" {
|
||||||
Z3_ast Z3_API Z3_mk_fpa_numeral_float(__in Z3_context c, __in float v, __in Z3_sort ty);
|
Z3_ast Z3_API Z3_mk_fpa_numeral_float(__in Z3_context c, __in float v, __in Z3_sort ty);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
\brief Create a numeral of FloatingPoint sort from a double.
|
\brief Create a numeral of FloatingPoint sort from a double.
|
||||||
|
|
||||||
This function is used to create numerals that fit in a double value.
|
This function is used to create numerals that fit in a double value.
|
||||||
It is slightly faster than #Z3_mk_numeral since it is not necessary to parse a string.
|
It is slightly faster than #Z3_mk_numeral since it is not necessary to parse a string.
|
||||||
|
|
||||||
\param c logical context
|
\param c logical context
|
||||||
\param v value
|
\param v value
|
||||||
\param ty sort
|
\param ty sort
|
||||||
|
|
||||||
ty must be a FloatingPoint sort
|
ty must be a FloatingPoint sort
|
||||||
|
|
||||||
\sa Z3_mk_numeral
|
\sa Z3_mk_numeral
|
||||||
|
|
||||||
def_API('Z3_mk_fpa_numeral_double', AST, (_in(CONTEXT), _in(DOUBLE), _in(SORT)))
|
def_API('Z3_mk_fpa_numeral_double', AST, (_in(CONTEXT), _in(DOUBLE), _in(SORT)))
|
||||||
*/
|
*/
|
||||||
Z3_ast Z3_API Z3_mk_fpa_numeral_double(__in Z3_context c, __in double v, __in Z3_sort ty);
|
Z3_ast Z3_API Z3_mk_fpa_numeral_double(__in Z3_context c, __in double v, __in Z3_sort ty);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue