mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
add char sort to .net
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
1b648437b7
commit
97a035fd6d
|
@ -55,6 +55,7 @@ set(Z3_DOTNET_ASSEMBLY_SOURCES_IN_SRC_TREE
|
||||||
BitVecSort.cs
|
BitVecSort.cs
|
||||||
BoolExpr.cs
|
BoolExpr.cs
|
||||||
BoolSort.cs
|
BoolSort.cs
|
||||||
|
CharSort.cs
|
||||||
Constructor.cs
|
Constructor.cs
|
||||||
ConstructorList.cs
|
ConstructorList.cs
|
||||||
Context.cs
|
Context.cs
|
||||||
|
|
35
src/api/dotnet/CharSort.cs
Normal file
35
src/api/dotnet/CharSort.cs
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
/*++
|
||||||
|
Copyright (c) 2016 Microsoft Corporation
|
||||||
|
|
||||||
|
Module Name:
|
||||||
|
|
||||||
|
CharSort.cs
|
||||||
|
|
||||||
|
Abstract:
|
||||||
|
|
||||||
|
Z3 Managed API: Character Sorts
|
||||||
|
|
||||||
|
Author:
|
||||||
|
|
||||||
|
Christoph Wintersteiger (cwinter) 2012-11-23
|
||||||
|
|
||||||
|
Notes:
|
||||||
|
|
||||||
|
--*/
|
||||||
|
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System;
|
||||||
|
|
||||||
|
namespace Microsoft.Z3
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// A Character sort
|
||||||
|
/// </summary>
|
||||||
|
public class CharSort : Sort
|
||||||
|
{
|
||||||
|
#region Internal
|
||||||
|
internal CharSort(Context ctx, IntPtr obj) : base(ctx, obj) { Debug.Assert(ctx != null); }
|
||||||
|
internal CharSort(Context ctx) : base(ctx, Native.Z3_mk_char_sort(ctx.nCtx)) { Debug.Assert(ctx != null); }
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
|
}
|
|
@ -89,7 +89,6 @@ namespace Microsoft.Z3
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
public IntSymbol MkSymbol(int i)
|
public IntSymbol MkSymbol(int i)
|
||||||
{
|
{
|
||||||
|
|
||||||
return new IntSymbol(this, i);
|
return new IntSymbol(this, i);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -98,7 +97,6 @@ namespace Microsoft.Z3
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public StringSymbol MkSymbol(string name)
|
public StringSymbol MkSymbol(string name)
|
||||||
{
|
{
|
||||||
|
|
||||||
return new StringSymbol(this, name);
|
return new StringSymbol(this, name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -107,7 +105,6 @@ namespace Microsoft.Z3
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal Symbol[] MkSymbols(string[] names)
|
internal Symbol[] MkSymbols(string[] names)
|
||||||
{
|
{
|
||||||
|
|
||||||
if (names == null) return null;
|
if (names == null) return null;
|
||||||
Symbol[] result = new Symbol[names.Length];
|
Symbol[] result = new Symbol[names.Length];
|
||||||
for (int i = 0; i < names.Length; ++i) result[i] = MkSymbol(names[i]);
|
for (int i = 0; i < names.Length; ++i) result[i] = MkSymbol(names[i]);
|
||||||
|
@ -120,6 +117,7 @@ namespace Microsoft.Z3
|
||||||
private IntSort m_intSort = null;
|
private IntSort m_intSort = null;
|
||||||
private RealSort m_realSort = null;
|
private RealSort m_realSort = null;
|
||||||
private SeqSort m_stringSort = null;
|
private SeqSort m_stringSort = null;
|
||||||
|
private CharSort m_charSort = null;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves the Boolean sort of the context.
|
/// Retrieves the Boolean sort of the context.
|
||||||
|
@ -155,6 +153,18 @@ namespace Microsoft.Z3
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Retrieves the String sort of the context.
|
||||||
|
/// </summary>
|
||||||
|
public SeqSort CharSort
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
if (m_charSort == null) m_charSort = new CharSort(this, Native.Z3_mk_char_sort(nCtx)); return m_charSort;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves the String sort of the context.
|
/// Retrieves the String sort of the context.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -2385,6 +2395,16 @@ namespace Microsoft.Z3
|
||||||
return new SeqExpr(this, Native.Z3_mk_int_to_str(nCtx, e.NativeObject));
|
return new SeqExpr(this, Native.Z3_mk_int_to_str(nCtx, e.NativeObject));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Convert a bit-vector expression, represented as an unsigned number, to a string.
|
||||||
|
/// </summary>
|
||||||
|
public SeqExpr UbvToString(Expr e)
|
||||||
|
{
|
||||||
|
Debug.Assert(e != null);
|
||||||
|
Debug.Assert(e is ArithExpr);
|
||||||
|
return new SeqExpr(this, Native.Z3_mk_ubv_to_str(nCtx, e.NativeObject));
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Convert an integer expression to a string.
|
/// Convert an integer expression to a string.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Reference in a new issue