Exemple #1
0
        internal Tree.Node GetNodeNumber(int nodeToMutate, ref int currentNodeNum)
        {
            if (currentNodeNum == nodeToMutate)
            {
                return(this);
            }
            else if (currentNodeNum > nodeToMutate)
            {
                throw new ApplicationException();
            }
            else
            {
                currentNodeNum++;
                if (this is Tree.FuncNode)
                {
                    FuncNode thisNode = this as FuncNode;
                    foreach (Node n in thisNode.Children)
                    {
                        Tree.Node posNode = n.GetNodeNumber(nodeToMutate, ref currentNodeNum);
                        if (posNode != null)
                        {
                            return(posNode);
                        }
                    }
                }
            }

            return(null);
        }
Exemple #2
0
        internal void SetNode(int nodeNumToReplace, Node nodeToReplaceWith, ref int currentNodeNum)
        {
            if (currentNodeNum > nodeNumToReplace)
            {
                throw new ApplicationException();
            }
            currentNodeNum++;
            if (this is Tree.FuncNode)
            {
                FuncNode thisNode = this as FuncNode;

                for (int childNum = 0; childNum < thisNode.Children.Length; childNum++)
                {
                    if (currentNodeNum == nodeNumToReplace)
                    {
                        thisNode.Children[childNum] = nodeToReplaceWith;
                        m_ReplacementDone           = true;
                        return;
                    }
                    else
                    {
                        thisNode.Children[childNum].SetNode(nodeNumToReplace, nodeToReplaceWith, ref currentNodeNum);
                    }
                }
            }

            return;
        }
Exemple #3
0
        private static void DrawNode(Tree.Node node, Graphics g, int depth, float x, float y, float imageWidth)
        {
            const int   CHAR_WIDTH            = 16;
            const int   rectHeight            = 20;
            const float distanceYBetweenNodes = (float)rectHeight * 1.5f;

            int rectWidth = 40;

            if (depth > 12)
            {
                return;             //only draw to depth 12;
            }
            if (node is Tree.FuncNode)
            {
                Tree.FuncNode functionNode = node as Tree.FuncNode;
                rectWidth = functionNode.Function.Name.Length * CHAR_WIDTH;
                g.DrawRectangle(Pens.Blue, x - (rectWidth / 2), y - (rectHeight / 2), rectWidth, rectHeight);
                g.DrawString(functionNode.Function.Name, Font, Brushes.Blue, x - (rectWidth / 2), y - (rectHeight / 2));

                int   numberOfChildren = functionNode.Children.Length;
                float nodeSplitting    = (float)(imageWidth / 2) * (float)Math.Pow(0.5, depth) * (float)1.0;

                for (int i = 0; i < numberOfChildren; i++)
                {
                    float childX = (x - nodeSplitting) + (((float)Math.Pow(i, 0.8) * nodeSplitting * 2) / (numberOfChildren - 1));
                    g.DrawLine(LinePen, x, y + rectHeight / 2, childX, y + distanceYBetweenNodes - (rectHeight / 2));
                    DrawNode(functionNode.Children[i], g, depth + 1, childX, y + distanceYBetweenNodes, imageWidth);
                }
            }
            else if (node is Tree.ValueNode)
            {
                Tree.ValueNode valueNode = node as Tree.ValueNode;
                rectWidth = valueNode.Value.ToString().Length *CHAR_WIDTH;
                g.DrawRectangle(Pens.Red, x - (rectWidth / 2), y - (rectHeight / 2), rectWidth, rectHeight);
                g.DrawString(valueNode.Value.ToString(), Font, Brushes.Blue, x - (rectWidth / 2), y - (rectHeight / 2));
            }
            else if (node is Tree.VariableNode)
            {
                Tree.VariableNode variableNode = node as Tree.VariableNode;
                rectWidth = variableNode.Variable.Name.Length * CHAR_WIDTH;
                g.DrawRectangle(Pens.DarkGreen, x - (rectWidth / 2), y - (rectHeight / 2), rectWidth, rectHeight);
                g.DrawString(variableNode.Variable.Name.ToString(), Font, Brushes.DarkGreen, x - (rectWidth / 2), y - (rectHeight / 2));
            }
            else
            {
                throw new ApplicationException();
            }
        }
Exemple #4
0
        internal Tree.FuncNode GetFunctionNumber(int funcNumToMutate, ref int currentFuncNum)
        {
            if (this is Tree.FuncNode)
            {
                FuncNode thisFunc = this as FuncNode;
                if (currentFuncNum == funcNumToMutate)
                {
                    return(thisFunc);
                }
                currentFuncNum++;

                foreach (Node n in thisFunc.Children)
                {
                    Tree.FuncNode posNode = n.GetFunctionNumber(funcNumToMutate, ref currentFuncNum);
                    if (posNode != null)
                    {
                        return(posNode);
                    }
                }
            }

            return(null);
        }
Exemple #5
0
        private Tree.Node GenerateRandomNode(int depth, RandomGenerationMethod randomGenMeth)
        {
            double randType = s_Random.NextDouble();

            Tree.Node node;
            bool      generateTerminal = true;

            if (randomGenMeth == RandomGenerationMethod.FULL)
            {
                if (depth >= MAXFULLDEPTH)
                {
                    generateTerminal = true;
                }
                else
                {
                    generateTerminal = false;
                }
            }
            else if (randomGenMeth == RandomGenerationMethod.GROW)
            {
                if (s_Random.NextDouble() < 0.5 || depth >= MAXFULLDEPTH)
                {
                    generateTerminal = true;
                }
                else
                {
                    generateTerminal = false;
                }
            }
            else
            {
                throw new ApplicationException();
            }

            if (generateTerminal)
            {
                if (s_Random.NextDouble() < 0.5)
                {
                    int valueNum = s_Random.Next(m_Values.Length);
                    node = new Tree.ValueNode(m_Values[valueNum]);
                }
                else
                {
                    int variableNum = s_Random.Next(m_Variables.Length);
                    node = new Tree.VariableNode(m_Variables[variableNum]);
                }
            }
            else
            {
                int funcNum = s_Random.Next(m_Functions.Length);

                if (m_Functions[funcNum].NumberOfArguments == 2)
                {
                    node = new Tree.FuncNode(
                        new Tree.Node[] { GenerateRandomNode(depth + 1, randomGenMeth), GenerateRandomNode(depth + 1, randomGenMeth) },
                        m_Functions[funcNum]);
                }
                else if (m_Functions[funcNum].NumberOfArguments == 4)
                {
                    node = new Tree.FuncNode(
                        new Tree.Node[] {
                        GenerateRandomNode(depth + 1, randomGenMeth),
                        GenerateRandomNode(depth + 1, randomGenMeth),
                        GenerateRandomNode(depth + 1, randomGenMeth),
                        GenerateRandomNode(depth + 1, randomGenMeth)
                    },
                        m_Functions[funcNum]);
                }
                else
                {
                    throw new ApplicationException();
                }
            }

            node.Depth = depth;

            m_NodesAdded++;
            return(node);
        }