mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-06-27 13:33:13 +00:00
markov
This commit is contained in:
@ -6,7 +6,11 @@ namespace Esiur.Analysis.Graph
|
||||
{
|
||||
public class Edge<T>
|
||||
{
|
||||
public T SourceNode { get; set; }
|
||||
public T DestinationNode { get; set; }
|
||||
public Node<T> SourceNode { get; set; }
|
||||
public Node<T> DestinationNode { get; set; }
|
||||
|
||||
public T Weight { get; set; }
|
||||
|
||||
public string Label { get; set; }
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user