AIXI.MonteCarloSearchNode.MonteCarloSearchNode C# (CSharp) 메소드

MonteCarloSearchNode() 공개 메소드

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