mirror of
https://github.com/Z3Prover/z3
synced 2025-06-06 06:03:23 +00:00
Managed API: Refactoring, Formatting.
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
008fc648c1
commit
682a725e13
2 changed files with 1 additions and 2 deletions
|
@ -37,7 +37,6 @@ namespace Microsoft.Z3
|
||||||
|
|
||||||
#region Internal
|
#region Internal
|
||||||
internal BitVecSort(Context ctx, IntPtr obj) : base(ctx, obj) { Contract.Requires(ctx != null); }
|
internal BitVecSort(Context ctx, IntPtr obj) : base(ctx, obj) { Contract.Requires(ctx != null); }
|
||||||
internal BitVecSort(Context ctx, uint size) : base(ctx, Native.Z3_mk_bv_sort(ctx.nCtx, size)) { Contract.Requires(ctx != null); }
|
|
||||||
#endregion
|
#endregion
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -193,7 +193,7 @@ namespace Microsoft.Z3
|
||||||
{
|
{
|
||||||
Contract.Ensures(Contract.Result<BitVecSort>() != null);
|
Contract.Ensures(Contract.Result<BitVecSort>() != null);
|
||||||
|
|
||||||
return new BitVecSort(this, size);
|
return new BitVecSort(this, Native.Z3_mk_bv_sort(nCtx, size));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue