文件名称:GeneticAlgorithms
-
所属分类:
- 标签属性:
- 上传时间:2012-11-16
-
文件大小:502.03kb
-
已下载:0次
-
提 供 者:
-
相关连接:无下载说明:别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容来自于网络,使用问题请自行百度
求解任务分配和路径选择的改进遗传算法。针对传统的遗传算法编程求解过程中存在的代码复用性不高,灵活性差的情况,在参考麻省理工学院Matthew Wall开发的遗传算法类库GAlib的基础上,提出了基于设计模式的改进遗传算法设计框架,提供了Visual C#代码。该框架通过使用模板方法模式、策略模式和适配器模式大大提高了改进遗传算法在设计实现过程中的可扩展性和灵活性。-Traditional genetic algorithm programming in the process of solving the existing code reusability is not high, poor flexibility, in reference to GAlib (the genetic algorithm library developed by Matthew Wall of the Massachusetts Institute of Technology),based on design pattern the writers put forward a framework for the design of Improved Genetic Algorithm and provides the Visual C# code. By using of template method pattern strategy pattern and adapter pattern the framework has greatly enhanced Improved Genetic Algorithm in the design process to achieve the scalability and flexibility.
(系统自动生成,下载前可以参看下载内容)
下载文件列表
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/AbstractGeneticAlgorithm.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/AbstractGenome.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/app.config
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/BinaryString.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/ClassDiagram1.cd
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/CrossoverOperator.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/formDemonstration.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/formDemonstration.Designer.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/formDemonstration.resx
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/Fun1.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/GAOneDBinaryStringGenome.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/GeneticOperators.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/InterfaceFitnessFunc.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/MutationOperator.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/OnePointCrossover.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/OnePointMutation.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/Program.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/Properties/AssemblyInfo.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/Properties/Resources.Designer.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/Properties/Resources.resx
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/Properties/Settings.Designer.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/Properties/Settings.settings
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/ProportionalSelector.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/SelectionOperator.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/SimpleGA.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/SimpleGeneticAlgorithms.csproj
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms.sln
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms.suo
GeneticAlgorithms/GeneticAlgorithms/AbstractGeneticAlgorithm.cs
GeneticAlgorithms/GeneticAlgorithms/AbstractGenome.cs
GeneticAlgorithms/GeneticAlgorithms/app.config
GeneticAlgorithms/GeneticAlgorithms/bin/Debug/GeneticAlgorithms.vshost.exe.config
GeneticAlgorithms/GeneticAlgorithms/bin/Debug/SimpleGeneticAlgorithms.exe
GeneticAlgorithms/GeneticAlgorithms/bin/Debug/SimpleGeneticAlgorithms.exe.config
GeneticAlgorithms/GeneticAlgorithms/bin/Debug/SimpleGeneticAlgorithms.pdb
GeneticAlgorithms/GeneticAlgorithms/bin/Debug/SimpleGeneticAlgorithms.vshost.exe
GeneticAlgorithms/GeneticAlgorithms/bin/Debug/SimpleGeneticAlgorithms.vshost.exe.config
GeneticAlgorithms/GeneticAlgorithms/bin/Debug/SimpleGeneticAlgorithms.vshost.exe.manifest
GeneticAlgorithms/GeneticAlgorithms/bin/Release/SimpleGeneticAlgorithms.exe
GeneticAlgorithms/GeneticAlgorithms/bin/Release/SimpleGeneticAlgorithms.exe.config
GeneticAlgorithms/GeneticAlgorithms/bin/Release/SimpleGeneticAlgorithms.pdb
GeneticAlgorithms/GeneticAlgorithms/BinaryString.cs
GeneticAlgorithms/GeneticAlgorithms/ClassDiagram1.cd
GeneticAlgorithms/GeneticAlgorithms/CrossoverOperator.cs
GeneticAlgorithms/GeneticAlgorithms/ElitRemainOnePointCrossover.cs
GeneticAlgorithms/GeneticAlgorithms/ElitRemainOnePointMutation.cs
GeneticAlgorithms/GeneticAlgorithms/ElitRemainSeleOperator.cs
GeneticAlgorithms/GeneticAlgorithms/Form1.cs
GeneticAlgorithms/GeneticAlgorithms/Form1.Designer.cs
GeneticAlgorithms/GeneticAlgorithms/formDemonstration.cs
GeneticAlgorithms/GeneticAlgorithms/formDemonstration.Designer.cs
GeneticAlgorithms/GeneticAlgorithms/formDemonstration.resx
GeneticAlgorithms/GeneticAlgorithms/Fun1.cs
GeneticAlgorithms/GeneticAlgorithms/GAOneDBinaryStringGenome.cs
GeneticAlgorithms/GeneticAlgorithms/GeneticAlgorithms.csproj
GeneticAlgorithms/GeneticAlgorithms/GeneticAlgorithms.csproj.user
GeneticAlgorithms/GeneticAlgorithms/GeneticOperators.cs
GeneticAlgorithms/GeneticAlgorithms/InterfaceFitnessFunc.cs
GeneticAlgorithms/GeneticAlgorithms/MutationOperator.cs
GeneticAlgorithms/GeneticAlgorithms/obj/Debug/GeneticAlgorithm.FormDemo.resources
GeneticAlgorithms/GeneticAlgorithms/obj/Debug/GeneticAlgorithm.Properties.Resources.resources
GeneticAlgorithms/GeneticAlgorithms/obj/Debug/GeneticAlgorithms.csproj.FileListAbsolute.txt
GeneticAlgorithms/GeneticAlgorithms/obj/Debug/GeneticAlgorithms.csproj.GenerateResource.Cache
GeneticAlgorithms/GeneticAlgorithms/obj/Debug/Refactor/SimpleGeneticAlgorithms.exe
GeneticAlgorithms/GeneticAlgorithms/obj/Debug/SimpleGeneticAlgorithms.csproj.FileListAbsolute.txt
GeneticAlgorithms/GeneticAlgorithms/obj/Debug/SimpleGeneticAlgorithms.csproj.GenerateResource.Cache
GeneticAlgorithms/GeneticAlgorithms/obj/Debug/SimpleGeneticAlgorithms.exe
GeneticAlgorithms/GeneticAlgorithms/obj/Debug/SimpleGeneticAlgorithms.pdb
GeneticAlgorithms/GeneticAlgorithms/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll
GeneticAlgorithms/GeneticAlgorithms/obj/Release/GeneticAlgorithm.FormDemo.resources
GeneticAlgorithms/GeneticAlgorithms/obj/Release/GeneticAlgorithm.Properties.Resources.resources
GeneticAlgorithms/GeneticAlgorithms/obj/Release/GeneticAlgorithms.csproj.FileListAbsolute.tx
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/AbstractGenome.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/app.config
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/BinaryString.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/ClassDiagram1.cd
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/CrossoverOperator.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/formDemonstration.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/formDemonstration.Designer.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/formDemonstration.resx
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/Fun1.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/GAOneDBinaryStringGenome.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/GeneticOperators.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/InterfaceFitnessFunc.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/MutationOperator.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/OnePointCrossover.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/OnePointMutation.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/Program.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/Properties/AssemblyInfo.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/Properties/Resources.Designer.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/Properties/Resources.resx
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/Properties/Settings.Designer.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/Properties/Settings.settings
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/ProportionalSelector.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/SelectionOperator.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/SimpleGA.cs
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms/SimpleGeneticAlgorithms.csproj
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms.sln
GeneticAlgorithms/Backup/SimpleGeneticAlgorithms.suo
GeneticAlgorithms/GeneticAlgorithms/AbstractGeneticAlgorithm.cs
GeneticAlgorithms/GeneticAlgorithms/AbstractGenome.cs
GeneticAlgorithms/GeneticAlgorithms/app.config
GeneticAlgorithms/GeneticAlgorithms/bin/Debug/GeneticAlgorithms.vshost.exe.config
GeneticAlgorithms/GeneticAlgorithms/bin/Debug/SimpleGeneticAlgorithms.exe
GeneticAlgorithms/GeneticAlgorithms/bin/Debug/SimpleGeneticAlgorithms.exe.config
GeneticAlgorithms/GeneticAlgorithms/bin/Debug/SimpleGeneticAlgorithms.pdb
GeneticAlgorithms/GeneticAlgorithms/bin/Debug/SimpleGeneticAlgorithms.vshost.exe
GeneticAlgorithms/GeneticAlgorithms/bin/Debug/SimpleGeneticAlgorithms.vshost.exe.config
GeneticAlgorithms/GeneticAlgorithms/bin/Debug/SimpleGeneticAlgorithms.vshost.exe.manifest
GeneticAlgorithms/GeneticAlgorithms/bin/Release/SimpleGeneticAlgorithms.exe
GeneticAlgorithms/GeneticAlgorithms/bin/Release/SimpleGeneticAlgorithms.exe.config
GeneticAlgorithms/GeneticAlgorithms/bin/Release/SimpleGeneticAlgorithms.pdb
GeneticAlgorithms/GeneticAlgorithms/BinaryString.cs
GeneticAlgorithms/GeneticAlgorithms/ClassDiagram1.cd
GeneticAlgorithms/GeneticAlgorithms/CrossoverOperator.cs
GeneticAlgorithms/GeneticAlgorithms/ElitRemainOnePointCrossover.cs
GeneticAlgorithms/GeneticAlgorithms/ElitRemainOnePointMutation.cs
GeneticAlgorithms/GeneticAlgorithms/ElitRemainSeleOperator.cs
GeneticAlgorithms/GeneticAlgorithms/Form1.cs
GeneticAlgorithms/GeneticAlgorithms/Form1.Designer.cs
GeneticAlgorithms/GeneticAlgorithms/formDemonstration.cs
GeneticAlgorithms/GeneticAlgorithms/formDemonstration.Designer.cs
GeneticAlgorithms/GeneticAlgorithms/formDemonstration.resx
GeneticAlgorithms/GeneticAlgorithms/Fun1.cs
GeneticAlgorithms/GeneticAlgorithms/GAOneDBinaryStringGenome.cs
GeneticAlgorithms/GeneticAlgorithms/GeneticAlgorithms.csproj
GeneticAlgorithms/GeneticAlgorithms/GeneticAlgorithms.csproj.user
GeneticAlgorithms/GeneticAlgorithms/GeneticOperators.cs
GeneticAlgorithms/GeneticAlgorithms/InterfaceFitnessFunc.cs
GeneticAlgorithms/GeneticAlgorithms/MutationOperator.cs
GeneticAlgorithms/GeneticAlgorithms/obj/Debug/GeneticAlgorithm.FormDemo.resources
GeneticAlgorithms/GeneticAlgorithms/obj/Debug/GeneticAlgorithm.Properties.Resources.resources
GeneticAlgorithms/GeneticAlgorithms/obj/Debug/GeneticAlgorithms.csproj.FileListAbsolute.txt
GeneticAlgorithms/GeneticAlgorithms/obj/Debug/GeneticAlgorithms.csproj.GenerateResource.Cache
GeneticAlgorithms/GeneticAlgorithms/obj/Debug/Refactor/SimpleGeneticAlgorithms.exe
GeneticAlgorithms/GeneticAlgorithms/obj/Debug/SimpleGeneticAlgorithms.csproj.FileListAbsolute.txt
GeneticAlgorithms/GeneticAlgorithms/obj/Debug/SimpleGeneticAlgorithms.csproj.GenerateResource.Cache
GeneticAlgorithms/GeneticAlgorithms/obj/Debug/SimpleGeneticAlgorithms.exe
GeneticAlgorithms/GeneticAlgorithms/obj/Debug/SimpleGeneticAlgorithms.pdb
GeneticAlgorithms/GeneticAlgorithms/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll
GeneticAlgorithms/GeneticAlgorithms/obj/Release/GeneticAlgorithm.FormDemo.resources
GeneticAlgorithms/GeneticAlgorithms/obj/Release/GeneticAlgorithm.Properties.Resources.resources
GeneticAlgorithms/GeneticAlgorithms/obj/Release/GeneticAlgorithms.csproj.FileListAbsolute.tx
本网站为编程资源及源代码搜集、介绍的搜索网站,版权归原作者所有! 粤ICP备11031372号
1999-2046 搜珍网 All Rights Reserved.