-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEdge.cs
43 lines (40 loc) · 1.25 KB
/
Edge.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AndrewTweddle.Tron.Core
{
public class Edge
{
public CellState StartVertex { get; set; }
public CellState EndVertex { get; set; }
public static bool operator ==(Edge edge1, Edge edge2)
{
if (edge1.StartVertex == edge2.StartVertex && edge1.EndVertex == edge2.EndVertex)
{
return true;
}
/* Incorrect - equality has an ordering as well:
if (edge1.StartVertex == edge2.EndVertex && edge1.EndVertex == edge2.StartVertex)
{
return true;
}
*/
return false;
}
public static bool operator !=(Edge edge1, Edge edge2)
{
if (edge1.StartVertex == edge2.StartVertex && edge1.EndVertex == edge2.EndVertex)
{
return false;
}
/* Incorrect - equality has an ordering as well
if (edge1.StartVertex == edge2.EndVertex && edge1.EndVertex == edge2.StartVertex)
{
return false;
}
*/
return true;
}
}
}