当前位置: 首页>>代码示例>>C#>>正文


C# INode.HasChildren方法代码示例

本文整理汇总了C#中INode.HasChildren方法的典型用法代码示例。如果您正苦于以下问题:C# INode.HasChildren方法的具体用法?C# INode.HasChildren怎么用?C# INode.HasChildren使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在INode的用法示例。


在下文中一共展示了INode.HasChildren方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: GenerateNoisyConstantsForNodeLeafes

        private static void GenerateNoisyConstantsForNodeLeafes(INode node)
        {
            if (node.HasChildren())
            {
                node.Children.ToList().ForEach(GenerateNoisyConstantsForNodeLeafes);
                return;
            }

            if (!(node is Constant))
                return;

            var childIndex = node.Parent.IndexOfChild(node);
            node.Parent.Children[childIndex] = CalculateNewConstant((Constant<double>)node);
        }
开发者ID:vadimostanin,项目名称:CA,代码行数:14,代码来源:RegressionDemo.cs

示例2: NoisyConstants

 private static void NoisyConstants(INode node)
 {
     if (node.HasChildren())
     {
         foreach (var child in node.Children)
         {
             NoisyConstants(child);
         }
     }
     else
     {
         if (node is Constant)
         {
             var oldValue = ((Constant<double>)node).Value;
             var childIndex = node.Parent.IndexOfChild(node);
             INode newConst = new Constant<double>(oldValue + Math.Pow((-1), Rnd.Next(3)) * Rnd.Next((int)(oldValue / 2), (int)(oldValue * 2)) * NoiseLevel);
             node.Parent.Children[childIndex] = newConst;
         }
     }
 }
开发者ID:vadimostanin,项目名称:GA,代码行数:20,代码来源:RegressionDemo.cs

示例3: RebuildTree

        /// <summary>
        /// Rebuilds the tree nodes
        /// </summary>
        /// <param name="node">Tree (root node)</param>
        /// <param name="replaceConstant">
        /// Replaces all of the constants by new variables when true.
        /// Replaces all of the new variables by calculated contants from _inContants list when false.
        /// </param>
        private void RebuildTree(INode node, bool replaceConstant)
        {
            if (node.HasChildren())
            {
                foreach (var child in node.Children)
                {
                    RebuildTree(child, replaceConstant);
                }
                return;
            }

            int childIndex;
            INode newVar;

            if (node is Constant && replaceConstant)
            {
                InConstant.Add(Double.Parse(node.ToString()));
                childIndex = node.Parent.IndexOfChild(node);
                newVar = VariableNode.Make<double>(_index, VarName + (InConstant.Count-1));
                node.Parent.Children[childIndex] = newVar;
                _index++;
            }

            if (!(node is VariableNode) || replaceConstant)
                return;

            if (((VariableNode) node).Index < _index - InConstant.Count)
                return;

            childIndex = node.Parent.IndexOfChild(node);
            newVar = new Constant<double>(InConstant[((VariableNode)node).Index-(_index - InConstant.Count)]);
            node.Parent.Children[childIndex] = newVar;
        }
开发者ID:vadimostanin,项目名称:CA,代码行数:41,代码来源:RegressionAlgorithm.cs


注:本文中的INode.HasChildren方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。