Example #1
0
 public void AddEdge(BoBoxVertextId from, params BoBoxVertextId[] targets)
 {
     foreach (var target in targets)
     {
         AddEdge(from, target);
     }
 }
Example #2
0
 public Node(BoBoxVertextId id)
     : base(id) { }
Example #3
0
        public void AddEdge(BoBoxVertextId from, BoBoxVertextId to)
        {

        }
Example #4
0
 public BoBoxGraphStruct(BoBoxVertextId id) 
 {
     this.id = id;
 }