mirror of
https://github.com/Z3Prover/z3
synced 2025-12-16 17:28:59 +00:00
sketch ArrayValue, add statistics
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
bf14aeb1bd
commit
80506dfdfa
4 changed files with 81 additions and 104 deletions
|
|
@ -197,5 +197,13 @@ namespace Microsoft.Z3
|
|||
|
||||
}
|
||||
|
||||
public Statistics.Entry[] GetStatistics(Z3_stats stats)
|
||||
{
|
||||
Native.Z3_stats_inc_ref(nCtx, stats);
|
||||
var result = Statistics.NativeEntries(nCtx, stats);
|
||||
Native.Z3_stats_dec_ref(nCtx, stats);
|
||||
return result;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue