Skip to content

Commit

Permalink
charsort
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Jul 13, 2021
1 parent 97a035f commit 79c2617
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/api/dotnet/Context.cs
Original file line number Diff line number Diff line change
Expand Up @@ -156,11 +156,11 @@ public RealSort RealSort
/// <summary>
/// Retrieves the String sort of the context.
/// </summary>
public SeqSort CharSort
public CharSort CharSort
{
get
{
if (m_charSort == null) m_charSort = new CharSort(this, Native.Z3_mk_char_sort(nCtx)); return m_charSort;
if (m_charSort == null) m_charSort = new CharSort(this); return m_charSort;
}
}

Expand Down
5 changes: 0 additions & 5 deletions src/api/dotnet/SeqSort.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,6 @@ internal SeqSort(Context ctx, IntPtr obj)
{
Debug.Assert(ctx != null);
}
internal SeqSort(Context ctx)
: base(ctx, Native.Z3_mk_int_sort(ctx.nCtx))
{
Debug.Assert(ctx != null);
}
#endregion
}
}

0 comments on commit 79c2617

Please sign in to comment.