CreateWeasel() public method

public CreateWeasel ( double mutationRate, int numberOfChildren ) : void
mutationRate double
numberOfChildren int
return void
Exemplo n.º 1
0
        static void Main(string[] args)
        {
            var weaselWorld = new WeaselWorld("ABCDEFGHIJKLMNOPQRSTUVWXYZ ", "METHINKS IT IS LIKE A WEASEL");

            weaselWorld.CreateWeasel(0.04d, 100);
            Console.ReadKey();
        }
Exemplo n.º 2
0
 static void Main(string[] args)
 {
     var weaselWorld = new WeaselWorld("ABCDEFGHIJKLMNOPQRSTUVWXYZ ", "METHINKS IT IS LIKE A WEASEL");
     weaselWorld.CreateWeasel(0.04d, 100);
     Console.ReadKey();
 }