AIXI.MonteCarloSearchNode.MonteCarloSearchNode C# (CSharp) Method

MonteCarloSearchNode() public method

public MonteCarloSearchNode ( int nodetype ) : System
nodetype int
return System
        public MonteCarloSearchNode(int nodetype)
        {
            this.Children = new Dictionary<int, MonteCarloSearchNode>();
            Debug.Assert(nodetype == ChanceNode || nodetype == DecisionNode);
            this.Type = nodetype;
        }