コード例 #1
0
        internal Vertex(int variable, Vertex[] children)
        {
            EntityUtil.BoolExprAssert(variable < int.MaxValue,
                                      "exceeded number of supported variables");

            AssertConstructorArgumentsValid(variable, children);

            this.Variable = variable;
            this.Children = children;
        }