3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 02:45:51 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-07-13 19:50:41 +02:00
parent 97a035fd6d
commit 79c261736b
2 changed files with 2 additions and 7 deletions

View file

@ -156,11 +156,11 @@ namespace Microsoft.Z3
/// <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;
}
}