Example #1
0
 public CjtV(CjtV <Informacion> otroConjunto)
 {
     this.conjunto = otroConjunto.conjunto;
 }
Example #2
0
File: Grafo.cs Project: CabAMV/AI
 public Grafo()
 {
     Aristas  = new CjtA <Informacion>();
     Vertices = new CjtV <Informacion>();
 }