AIMA.Core.Search.Framework.Node.Node C# (CSharp) Method

Node() public method

public Node ( System state ) : System.Collections.Generic
state System
return 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