AIMA.Core.Search.Framework.Node.Node C# (CSharp) Метод

Node() публичный Метод

public Node ( System state ) : System.Collections.Generic
state System
Результат System.Collections.Generic
        public Node(System.Object state)
        {
            this.state = state;
            this.pathCost = 0.0;
        }

Same methods

Node::Node ( System state, Node parent, Action action, double stepCost ) : System.Collections.Generic