Added Distance

This commit is contained in:
C9Glax 2022-11-03 19:13:26 +01:00
parent 4930423cb5
commit b88e1a8dfc

View File

@ -1,22 +1,18 @@
namespace Graph
{
public struct Edge
public class Edge
{
public ulong id { get; }
public Node neighbor { get; }
public float weight { get; }
public Edge(Node neighbor, float weight)
{
this.neighbor = neighbor;
this.weight = weight;
this.id = 0;
}
public float time { get; }
public float distance { get; }
public Edge(Node neighbor, float weight, ulong id)
public Edge(Node neighbor, float time, float distance, ulong? id)
{
this.neighbor = neighbor;
this.weight = weight;
this.id = id;
this.time = time;
this.distance = distance;
this.id = (id != null) ? id.Value : 0;
}
}
}