Example #1
0
        public void NeueKante(string quelle, string ziel, double gewicht)
        {
            Knoten q = Knoten.Find(y => y.Name == quelle);
            Knoten z = Knoten.Find(y => y.Name == ziel);

            NeueKante(q, z, gewicht);
        }