예제 #1
0
        public void CreateMethod()
        {
            FactoryController Factory = FactoryController.Create();

            BAParameters.EmployeesNumber = Factory.EmployeesList.Count;
            BeesAlgorithmController Controller = new BeesAlgorithmController(BAParameters, Factory);

            Data = Plotter.Plot(Controller._iterationResults);
        }
예제 #2
0
        public void CreateMethod()
        {
            FactoryController Factory = FactoryController.Create();

            Parameters.EmployeesNumber = 25;
            Parameters.PercentageOfParentsChosenToSelection = 0;
            GeneticAlgorithmController Controller = new GeneticAlgorithmController(Parameters, Factory);

            Data = Plotter.Plot(Controller._iterationResults);
        }