Пример #1
0
        public void IncludeView(NodeView nextNode)
        {
            Status = NodeStatus.InCycle;
            var edge = Arrows.FirstOrDefault(a => a.EndNode.Equals(nextNode));

            if (edge != null)
            {
                edge.Status = NodeStatus.InCycle;
            }
        }