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

        }
Ejemplo n.º 4
0
 public BoBoxGraphStruct(BoBoxVertextId id) 
 {
     this.id = id;
 }