Example #1
0
        public override object Clone()
        {
            WeightedBiGraph wb = new WeightedBiGraph();

            this.CopyTo( wb );

            return wb;
        }
Example #2
0
        public static void SetDefaultEventHandlers( WeightedBiGraph graph )
        {
            BiGraph.SetDefaultEventHandlers(graph);

            graph.OnAddEdge += new EventHandler<EdgesModifiedEventArgs>(graph.WeightedBiGraph_OnAddEdge);
        }