Exemplo n.º 1
0
        internal WeighNode(WeighPoint weighPoint, KnowledgeNode parent)
        {
            if (parent == null)
            {
                throw new ArgumentNullException(nameof(parent));
            }

            WeighPoint = weighPoint;
            Parent     = parent;
        }
Exemplo n.º 2
0
 internal StrategyNode(WeighPoint weighPoint, StrategyNode parent)
 {
     WeighPoint = weighPoint;
     Parent     = parent;
 }
Exemplo n.º 3
0
 internal StrategyNode(WeighPoint weighPoint)
 {
     WeighPoint = weighPoint;
     Parent     = null;
 }