mirror of
https://github.com/Z3Prover/z3
synced 2025-06-17 03:16:17 +00:00
add mkStringSort
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
e3d45b9850
commit
571e345d07
1 changed files with 8 additions and 1 deletions
|
@ -218,10 +218,17 @@ namespace Microsoft.Z3
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public BitVecSort MkBitVecSort(uint size)
|
public BitVecSort MkBitVecSort(uint size)
|
||||||
{
|
{
|
||||||
|
|
||||||
return new BitVecSort(this, Native.Z3_mk_bv_sort(nCtx, size));
|
return new BitVecSort(this, Native.Z3_mk_bv_sort(nCtx, size));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Create a new string sort.
|
||||||
|
/// </summary>
|
||||||
|
public SeqSort MkStringSort()
|
||||||
|
{
|
||||||
|
Debug.Assert(s != null);
|
||||||
|
return new SeqSort(this, Native.Z3_mk_string_sort(nCtx));
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Create a new sequence sort.
|
/// Create a new sequence sort.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue