mirror of
https://github.com/Z3Prover/z3
synced 2025-06-10 08:03:25 +00:00
Whitespace
This commit is contained in:
parent
216c1b2989
commit
52bbd67cd3
4 changed files with 170 additions and 170 deletions
|
@ -309,7 +309,7 @@ namespace Microsoft.Z3
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Create a new finite domain sort.
|
/// Create a new finite domain sort.
|
||||||
/// <returns>The result is a sort</returns>
|
/// <returns>The result is a sort</returns>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="name">The name used to identify the sort</param>
|
/// <param name="name">The name used to identify the sort</param>
|
||||||
/// <param name="size">The size of the sort</param>
|
/// <param name="size">The size of the sort</param>
|
||||||
|
@ -324,9 +324,9 @@ namespace Microsoft.Z3
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Create a new finite domain sort.
|
/// Create a new finite domain sort.
|
||||||
/// <returns>The result is a sort</returns>
|
/// <returns>The result is a sort</returns>
|
||||||
/// Elements of the sort are created using <seealso cref="MkNumeral(ulong, Sort)"/>,
|
/// Elements of the sort are created using <seealso cref="MkNumeral(ulong, Sort)"/>,
|
||||||
/// and the elements range from 0 to <tt>size-1</tt>.
|
/// and the elements range from 0 to <tt>size-1</tt>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="name">The name used to identify the sort</param>
|
/// <param name="name">The name used to identify the sort</param>
|
||||||
/// <param name="size">The size of the sort</param>
|
/// <param name="size">The size of the sort</param>
|
||||||
|
@ -457,16 +457,16 @@ namespace Microsoft.Z3
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Update a datatype field at expression t with value v.
|
/// Update a datatype field at expression t with value v.
|
||||||
/// The function performs a record update at t. The field
|
/// The function performs a record update at t. The field
|
||||||
/// that is passed in as argument is updated with value v,
|
/// that is passed in as argument is updated with value v,
|
||||||
/// the remainig fields of t are unchanged.
|
/// the remainig fields of t are unchanged.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Expr MkUpdateField(FuncDecl field, Expr t, Expr v)
|
public Expr MkUpdateField(FuncDecl field, Expr t, Expr v)
|
||||||
{
|
{
|
||||||
return Expr.Create(this, Native.Z3_datatype_update_field(
|
return Expr.Create(this, Native.Z3_datatype_update_field(
|
||||||
nCtx, field.NativeObject,
|
nCtx, field.NativeObject,
|
||||||
t.NativeObject, v.NativeObject));
|
t.NativeObject, v.NativeObject));
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
#endregion
|
#endregion
|
||||||
|
@ -4499,7 +4499,7 @@ namespace Microsoft.Z3
|
||||||
readonly private Statistics.DecRefQueue m_Statistics_DRQ = new Statistics.DecRefQueue(10);
|
readonly private Statistics.DecRefQueue m_Statistics_DRQ = new Statistics.DecRefQueue(10);
|
||||||
readonly private Tactic.DecRefQueue m_Tactic_DRQ = new Tactic.DecRefQueue(10);
|
readonly private Tactic.DecRefQueue m_Tactic_DRQ = new Tactic.DecRefQueue(10);
|
||||||
readonly private Fixedpoint.DecRefQueue m_Fixedpoint_DRQ = new Fixedpoint.DecRefQueue(10);
|
readonly private Fixedpoint.DecRefQueue m_Fixedpoint_DRQ = new Fixedpoint.DecRefQueue(10);
|
||||||
readonly private Optimize.DecRefQueue m_Optimize_DRQ = new Optimize.DecRefQueue(10);
|
readonly private Optimize.DecRefQueue m_Optimize_DRQ = new Optimize.DecRefQueue(10);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// AST DRQ
|
/// AST DRQ
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue