Example #1
0
 /**
  * @return bool
  * @param aret
  */
 public bool insererAret(General.Aret aret)
 {
     if (this.compatibleAret(aret) && aret.compatibleSommet(this)
         && graphe == aret.getGraphe()) {
     this.arets.Add(aret);
     return true;
     }
     return false;
 }