mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
update documentation
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
b71580f11c
commit
330120e406
|
@ -305,6 +305,9 @@ namespace Microsoft.Z3
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Fixedpoint statistics.
|
||||||
|
/// </summary>
|
||||||
public Statistics Statistics
|
public Statistics Statistics
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
|
|
@ -155,6 +155,9 @@ namespace Microsoft.Z3
|
||||||
return Native.Z3_optimize_to_string(Context.nCtx, NativeObject);
|
return Native.Z3_optimize_to_string(Context.nCtx, NativeObject);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Optimize statistics.
|
||||||
|
/// </summary>
|
||||||
public Statistics Statistics
|
public Statistics Statistics
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
|
|
@ -308,6 +308,18 @@ public class Fixedpoint extends Z3Object
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fixedpoint statistics.
|
||||||
|
*
|
||||||
|
* @throws Z3Exception
|
||||||
|
**/
|
||||||
|
public Statistics getStatistics() throws Z3Exception
|
||||||
|
{
|
||||||
|
return new Statistics(getContext(), Native.fixedpointGetStatistics(
|
||||||
|
getContext().nCtx(), getNativeObject()));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
Fixedpoint(Context ctx, long obj) throws Z3Exception
|
Fixedpoint(Context ctx, long obj) throws Z3Exception
|
||||||
{
|
{
|
||||||
super(ctx, obj);
|
super(ctx, obj);
|
||||||
|
|
Loading…
Reference in a new issue