mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
fix doc errors
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
ea2a843325
commit
3c94083a23
|
@ -8,6 +8,6 @@
|
||||||
|
|
||||||
This website hosts the automatically generated documentation for the Z3 APIs.
|
This website hosts the automatically generated documentation for the Z3 APIs.
|
||||||
|
|
||||||
- \ref @C_API@
|
- \ref @C_API@
|
||||||
- \ref @CPP_API@ @DOTNET_API@ @JAVA_API@ @PYTHON_API@ @OCAML_API@ @JS_API@
|
- \ref @CPP_API@ @DOTNET_API@ @JAVA_API@ @PYTHON_API@ @OCAML_API@ @JS_API@
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -4620,16 +4620,16 @@ namespace Microsoft.Z3
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// Produces a term that represents the conversion of the floating-point term t into a
|
/// Produces a term that represents the conversion of the floating-point term t into a
|
||||||
/// bit-vector term of size sz in 2's complement format (signed when signed==true). If necessary,
|
/// bit-vector term of size sz in 2's complement format (signed when sign==true). If necessary,
|
||||||
/// the result will be rounded according to rounding mode rm.
|
/// the result will be rounded according to rounding mode rm.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="rm">RoundingMode term.</param>
|
/// <param name="rm">RoundingMode term.</param>
|
||||||
/// <param name="t">FloatingPoint term</param>
|
/// <param name="t">FloatingPoint term</param>
|
||||||
/// <param name="sz">Size of the resulting bit-vector.</param>
|
/// <param name="sz">Size of the resulting bit-vector.</param>
|
||||||
/// <param name="signed">Indicates whether the result is a signed or unsigned bit-vector.</param>
|
/// <param name="sign">Indicates whether the result is a signed or unsigned bit-vector.</param>
|
||||||
public BitVecExpr MkFPToBV(FPRMExpr rm, FPExpr t, uint sz, bool signed)
|
public BitVecExpr MkFPToBV(FPRMExpr rm, FPExpr t, uint sz, bool sign)
|
||||||
{
|
{
|
||||||
if (signed)
|
if (sign)
|
||||||
return new BitVecExpr(this, Native.Z3_mk_fpa_to_sbv(this.nCtx, rm.NativeObject, t.NativeObject, sz));
|
return new BitVecExpr(this, Native.Z3_mk_fpa_to_sbv(this.nCtx, rm.NativeObject, t.NativeObject, sz));
|
||||||
else
|
else
|
||||||
return new BitVecExpr(this, Native.Z3_mk_fpa_to_ubv(this.nCtx, rm.NativeObject, t.NativeObject, sz));
|
return new BitVecExpr(this, Native.Z3_mk_fpa_to_ubv(this.nCtx, rm.NativeObject, t.NativeObject, sz));
|
||||||
|
|
|
@ -1717,8 +1717,8 @@ public class Context implements AutoCloseable {
|
||||||
* {@code [domain -> range]}, and {@code i} must have the sort
|
* {@code [domain -> range]}, and {@code i} must have the sort
|
||||||
* {@code domain}. The sort of the result is {@code range}.
|
* {@code domain}. The sort of the result is {@code range}.
|
||||||
*
|
*
|
||||||
* @see #mkArraySort(Sort[], Sort)
|
* @see #mkArraySort(Sort[], R)
|
||||||
* @see #mkStore
|
* @see #mkStore(Expr<ArraySort<D, R>> a, Expr<D> i, Expr<R> v)
|
||||||
**/
|
**/
|
||||||
public <D extends Sort, R extends Sort> Expr<R> mkSelect(Expr<ArraySort<D, R>> a, Expr<D> i)
|
public <D extends Sort, R extends Sort> Expr<R> mkSelect(Expr<ArraySort<D, R>> a, Expr<D> i)
|
||||||
{
|
{
|
||||||
|
@ -1739,8 +1739,8 @@ public class Context implements AutoCloseable {
|
||||||
* {@code [domains -> range]}, and {@code args} must have the sorts
|
* {@code [domains -> range]}, and {@code args} must have the sorts
|
||||||
* {@code domains}. The sort of the result is {@code range}.
|
* {@code domains}. The sort of the result is {@code range}.
|
||||||
*
|
*
|
||||||
* @see #mkArraySort(Sort[], Sort)
|
* @see #mkArraySort(Sort[], R)
|
||||||
* @see #mkStore
|
* @see #mkStore(Expr<ArraySort<D, R>> a, Expr<D> i, Expr<R> v)
|
||||||
**/
|
**/
|
||||||
public <R extends Sort> Expr<R> mkSelect(Expr<ArraySort<Sort, R>> a, Expr<?>[] args)
|
public <R extends Sort> Expr<R> mkSelect(Expr<ArraySort<Sort, R>> a, Expr<?>[] args)
|
||||||
{
|
{
|
||||||
|
@ -1763,8 +1763,8 @@ public class Context implements AutoCloseable {
|
||||||
* {@code select}) on all indices except for {@code i}, where it
|
* {@code select}) on all indices except for {@code i}, where it
|
||||||
* maps to {@code v} (and the {@code select} of {@code a}
|
* maps to {@code v} (and the {@code select} of {@code a}
|
||||||
* with respect to {@code i} may be a different value).
|
* with respect to {@code i} may be a different value).
|
||||||
* @see #mkArraySort(Sort[], Sort)
|
* @see #mkArraySort(Sort[], R)
|
||||||
* @see #mkSelect
|
* @see #mkSelect(Expr<ArraySort<D, R>> a, Expr<D> i)
|
||||||
|
|
||||||
**/
|
**/
|
||||||
public <D extends Sort, R extends Sort> ArrayExpr<D, R> mkStore(Expr<ArraySort<D, R>> a, Expr<D> i, Expr<R> v)
|
public <D extends Sort, R extends Sort> ArrayExpr<D, R> mkStore(Expr<ArraySort<D, R>> a, Expr<D> i, Expr<R> v)
|
||||||
|
@ -1788,8 +1788,8 @@ public class Context implements AutoCloseable {
|
||||||
* {@code select}) on all indices except for {@code args}, where it
|
* {@code select}) on all indices except for {@code args}, where it
|
||||||
* maps to {@code v} (and the {@code select} of {@code a}
|
* maps to {@code v} (and the {@code select} of {@code a}
|
||||||
* with respect to {@code args} may be a different value).
|
* with respect to {@code args} may be a different value).
|
||||||
* @see #mkArraySort(Sort[], Sort)
|
* @see #mkArraySort(Sort[], R)
|
||||||
* @see #mkSelect
|
* @see #mkSelect(Expr<ArraySort<D, R>> a, Expr<D> i)
|
||||||
|
|
||||||
**/
|
**/
|
||||||
public <R extends Sort> ArrayExpr<Sort, R> mkStore(Expr<ArraySort<Sort, R>> a, Expr<?>[] args, Expr<R> v)
|
public <R extends Sort> ArrayExpr<Sort, R> mkStore(Expr<ArraySort<Sort, R>> a, Expr<?>[] args, Expr<R> v)
|
||||||
|
@ -1806,8 +1806,8 @@ public class Context implements AutoCloseable {
|
||||||
* Remarks: The resulting term is an array, such
|
* Remarks: The resulting term is an array, such
|
||||||
* that a {@code select} on an arbitrary index produces the value
|
* that a {@code select} on an arbitrary index produces the value
|
||||||
* {@code v}.
|
* {@code v}.
|
||||||
* @see #mkArraySort(Sort[], Sort)
|
* @see #mkArraySort(Sort[], R)
|
||||||
* @see #mkSelect
|
* @see #mkSelect(Expr<ArraySort<D, R>> a, Expr<D> i)
|
||||||
*
|
*
|
||||||
**/
|
**/
|
||||||
public <D extends Sort, R extends Sort> ArrayExpr<D, R> mkConstArray(D domain, Expr<R> v)
|
public <D extends Sort, R extends Sort> ArrayExpr<D, R> mkConstArray(D domain, Expr<R> v)
|
||||||
|
@ -1826,9 +1826,9 @@ public class Context implements AutoCloseable {
|
||||||
* {@code f} must have type {@code range_1 .. range_n -> range}.
|
* {@code f} must have type {@code range_1 .. range_n -> range}.
|
||||||
* {@code v} must have sort range. The sort of the result is
|
* {@code v} must have sort range. The sort of the result is
|
||||||
* {@code [domain_i -> range]}.
|
* {@code [domain_i -> range]}.
|
||||||
* @see #mkArraySort(Sort[], Sort)
|
* @see #mkArraySort(Sort[], R)
|
||||||
* @see #mkSelect
|
* @see #mkSelect(Expr<ArraySort<D, R>> a, Expr<D> i)
|
||||||
* @see #mkStore
|
* @see #mkStore(Expr<ArraySort<D, R>> a, Expr<D> i, Expr<R> v)
|
||||||
|
|
||||||
**/
|
**/
|
||||||
@SafeVarargs
|
@SafeVarargs
|
||||||
|
@ -2476,7 +2476,7 @@ public class Context implements AutoCloseable {
|
||||||
*
|
*
|
||||||
* @return A Term with value {@code num}/{@code den}
|
* @return A Term with value {@code num}/{@code den}
|
||||||
* and sort Real
|
* and sort Real
|
||||||
* @see #mkNumeral(String,Sort)
|
* @see #mkNumeral(String v, R ty)
|
||||||
**/
|
**/
|
||||||
public RatNum mkReal(int num, int den)
|
public RatNum mkReal(int num, int den)
|
||||||
{
|
{
|
||||||
|
@ -2612,7 +2612,7 @@ public class Context implements AutoCloseable {
|
||||||
* 'names' of the bound variables, and {@code body} is the body
|
* 'names' of the bound variables, and {@code body} is the body
|
||||||
* of the quantifier. Quantifiers are associated with weights indicating the
|
* of the quantifier. Quantifiers are associated with weights indicating the
|
||||||
* importance of using the quantifier during instantiation.
|
* importance of using the quantifier during instantiation.
|
||||||
* Note that the bound variables are de-Bruijn indices created using {@link #mkBound}.
|
* Note that the bound variables are de-Bruijn indices created using {#mkBound}.
|
||||||
* Z3 applies the convention that the last element in {@code names} and
|
* Z3 applies the convention that the last element in {@code names} and
|
||||||
* {@code sorts} refers to the variable with index 0, the second to last element
|
* {@code sorts} refers to the variable with index 0, the second to last element
|
||||||
* of {@code names} and {@code sorts} refers to the variable
|
* of {@code names} and {@code sorts} refers to the variable
|
||||||
|
@ -2707,7 +2707,7 @@ public class Context implements AutoCloseable {
|
||||||
* with the sorts of the bound variables, {@code names} is an array with the
|
* with the sorts of the bound variables, {@code names} is an array with the
|
||||||
* 'names' of the bound variables, and {@code body} is the body of the
|
* 'names' of the bound variables, and {@code body} is the body of the
|
||||||
* lambda.
|
* lambda.
|
||||||
* Note that the bound variables are de-Bruijn indices created using {@link #mkBound}
|
* Note that the bound variables are de-Bruijn indices created using {#mkBound}
|
||||||
* Z3 applies the convention that the last element in {@code names} and
|
* Z3 applies the convention that the last element in {@code names} and
|
||||||
* {@code sorts} refers to the variable with index 0, the second to last element
|
* {@code sorts} refers to the variable with index 0, the second to last element
|
||||||
* of {@code names} and {@code sorts} refers to the variable
|
* of {@code names} and {@code sorts} refers to the variable
|
||||||
|
|
|
@ -242,7 +242,7 @@ public class Model extends Z3Object {
|
||||||
* values. We say this finite set is the "universe" of the sort.
|
* values. We say this finite set is the "universe" of the sort.
|
||||||
*
|
*
|
||||||
* @see #getNumSorts
|
* @see #getNumSorts
|
||||||
* @see #getSortUniverse
|
* @see #getSortUniverse(R s)
|
||||||
*
|
*
|
||||||
* @throws Z3Exception
|
* @throws Z3Exception
|
||||||
**/
|
**/
|
||||||
|
|
|
@ -161,6 +161,12 @@ public class Quantifier extends BoolExpr
|
||||||
/**
|
/**
|
||||||
* Create a quantified expression.
|
* Create a quantified expression.
|
||||||
*
|
*
|
||||||
|
* @param ctx Context to create the quantifier on.
|
||||||
|
* @param isForall Quantifier type.
|
||||||
|
* @param sorts Sorts of bound variables.
|
||||||
|
* @param names Names of bound variables
|
||||||
|
* @param body Body of quantifier
|
||||||
|
* @param weight Weight used to indicate priority for qunatifier instantiation
|
||||||
* @param patterns Nullable patterns
|
* @param patterns Nullable patterns
|
||||||
* @param noPatterns Nullable noPatterns
|
* @param noPatterns Nullable noPatterns
|
||||||
* @param quantifierID Nullable quantifierID
|
* @param quantifierID Nullable quantifierID
|
||||||
|
|
|
@ -6811,7 +6811,7 @@ extern "C" {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
\brief register a callback when a new expression with a registered function is used by the solver
|
\brief register a callback when a new expression with a registered function is used by the solver
|
||||||
The registered function appears at the top level and is created using \ref Z3_propagate_solver_declare.
|
The registered function appears at the top level and is created using \ref Z3_solver_propagate_declare.
|
||||||
|
|
||||||
def_API('Z3_solver_propagate_created', VOID, (_in(CONTEXT), _in(SOLVER), _fnptr(Z3_created_eh)))
|
def_API('Z3_solver_propagate_created', VOID, (_in(CONTEXT), _in(SOLVER), _fnptr(Z3_created_eh)))
|
||||||
*/
|
*/
|
||||||
|
@ -6837,7 +6837,7 @@ extern "C" {
|
||||||
/**
|
/**
|
||||||
Create uninterpreted function declaration for the user propagator.
|
Create uninterpreted function declaration for the user propagator.
|
||||||
When expressions using the function are created by the solver invoke a callback
|
When expressions using the function are created by the solver invoke a callback
|
||||||
to \ref \Z3_solver_progate_created with arguments
|
to \ref \Z3_solver_propagate_created with arguments
|
||||||
1. context and callback solve
|
1. context and callback solve
|
||||||
2. declared_expr: expression using function that was used as the top-level symbol
|
2. declared_expr: expression using function that was used as the top-level symbol
|
||||||
3. declared_id: a unique identifier (unique within the current scope) to track the expression.
|
3. declared_id: a unique identifier (unique within the current scope) to track the expression.
|
||||||
|
|
Loading…
Reference in a new issue