mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
add reference equality to Symbols for .NET
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
e6516f549d
commit
21201371ed
|
@ -2159,6 +2159,7 @@ namespace test_mapi
|
||||||
Console.Write("Z3 Full Version: ");
|
Console.Write("Z3 Full Version: ");
|
||||||
Console.WriteLine(Microsoft.Z3.Version.ToString());
|
Console.WriteLine(Microsoft.Z3.Version.ToString());
|
||||||
|
|
||||||
|
|
||||||
SimpleExample();
|
SimpleExample();
|
||||||
|
|
||||||
// These examples need model generation turned on.
|
// These examples need model generation turned on.
|
||||||
|
|
|
@ -66,6 +66,47 @@ namespace Microsoft.Z3
|
||||||
throw new Z3Exception("Unknown symbol kind encountered");
|
throw new Z3Exception("Unknown symbol kind encountered");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Equality overloading.
|
||||||
|
/// </summary>
|
||||||
|
public static bool operator ==(Symbol s1, Symbol s2)
|
||||||
|
{
|
||||||
|
|
||||||
|
return Object.ReferenceEquals(s1, s2) ||
|
||||||
|
(!Object.ReferenceEquals(s1, null) &&
|
||||||
|
!Object.ReferenceEquals(s2, null) &&
|
||||||
|
s1.NativeObject == s2.NativeObject);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Equality overloading.
|
||||||
|
/// </summary>
|
||||||
|
public static bool operator !=(Symbol s1, Symbol s2)
|
||||||
|
{
|
||||||
|
return !(s1.NativeObject == s2.NativeObject);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Object comparison.
|
||||||
|
/// </summary>
|
||||||
|
public override bool Equals(object o)
|
||||||
|
{
|
||||||
|
Symbol casted = o as Symbol;
|
||||||
|
if (casted == null) return false;
|
||||||
|
return this == casted;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The Symbols's hash code.
|
||||||
|
/// </summary>
|
||||||
|
/// <returns>A hash code</returns>
|
||||||
|
public override int GetHashCode()
|
||||||
|
{
|
||||||
|
return (int)NativeObject;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
#region Internal
|
#region Internal
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Symbol constructor
|
/// Symbol constructor
|
||||||
|
|
Loading…
Reference in a new issue