在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 群集智能算法C#

群集智能算法C#

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:3.92M
  • 下载次数:12
  • 浏览次数:98
  • 发布时间:2021-03-11
  • 实例类别:一般编程问题
  • 发 布 人:好学IT男
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
粒子群算法、遗传算法、动态规划等算法 C#实现,貌似是那个学校做的
【实例截图】
【核心代码】
4150b880-c59c-48db-957f-cb4d25ff378b
└── 2010.3.6.gp
├── Common
│   ├── bin
│   │   ├── Debug
│   │   │   ├── Common.dll
│   │   │   └── Common.pdb
│   │   └── Release
│   │   ├── Common.dll
│   │   └── Common.pdb
│   ├── Common.csproj
│   ├── DataReader.cs
│   ├── Fitness.cs
│   ├── GeneSymbol
│   │   ├── BoolFunction.cs
│   │   ├── BoolVariable.cs
│   │   ├── ControlFunction.cs
│   │   ├── DoubleVariable.cs
│   │   ├── Fuction.cs
│   │   ├── GeneData.cs
│   │   ├── GeneSymbol.cs
│   │   ├── MathFunction.cs
│   │   ├── RandomDoubleGeneDataCreator.cs
│   │   └── Terminator.cs
│   ├── NeighborMode.cs
│   ├── obj
│   │   ├── Common.csproj.FileList.txt
│   │   ├── Debug
│   │   │   ├── Common.csproj.FileListAbsolute.txt
│   │   │   ├── Common.dll
│   │   │   ├── Common.pdb
│   │   │   └── Refactor
│   │   │   └── Common.dll
│   │   └── Release
│   │   ├── Common.csproj.FileListAbsolute.txt
│   │   ├── Common.dll
│   │   ├── Common.pdb
│   │   └── Refactor
│   │   └── Common.dll
│   ├── Permutation.cs
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── Selector.cs
│   ├── Tools.cs
│   ├── TreeNode.cs
│   └── WinApi.cs
├── DataCreator
│   ├── bin
│   │   ├── Debug
│   │   │   ├── Common.dll
│   │   │   ├── Common.pdb
│   │   │   ├── DataCreator.exe
│   │   │   ├── DataCreator.pdb
│   │   │   ├── StudyGaGp.exe
│   │   │   └── StudyGaGp.pdb
│   │   └── Release
│   │   ├── Common.dll
│   │   ├── Common.pdb
│   │   ├── DataCreator.exe
│   │   ├── DataCreator.pdb
│   │   ├── DataCreator.vshost.exe
│   │   ├── DataCreator.vshost.exe.manifest
│   │   └── StudyGaGp.exe
│   ├── DataCreator.csproj
│   ├── obj
│   │   ├── Debug
│   │   │   ├── DataCreator.csproj.FileListAbsolute.txt
│   │   │   ├── DataCreator.exe
│   │   │   ├── DataCreator.pdb
│   │   │   └── ResolveAssemblyReference.cache
│   │   └── Release
│   │   ├── DataCreator.csproj.FileListAbsolute.txt
│   │   ├── DataCreator.exe
│   │   ├── DataCreator.pdb
│   │   └── ResolveAssemblyReference.cache
│   ├── Program.cs
│   └── Properties
│   └── AssemblyInfo.cs
├── GA
│   ├── bin
│   │   ├── Debug
│   │   │   ├── Common.dll
│   │   │   ├── Common.pdb
│   │   │   ├── MyGEP.vshost.exe
│   │   │   ├── StudyGaGp.exe
│   │   │   ├── StudyGaGp.pdb
│   │   │   └── StudyGaGp.vshost.exe
│   │   ├── Release
│   │   │   ├── 1.everyind.fitness.txt
│   │   │   ├── 1.everyind.generation.txt
│   │   │   ├── 2.everyind.fitness.txt
│   │   │   ├── 2.everyind.generation.txt
│   │   │   ├── Common.dll
│   │   │   ├── Common.pdb
│   │   │   ├── keep best not mutation.out.txt
│   │   │   ├── MyGEP.vshost.exe
│   │   │   ├── stackstack keep best not mutation.out.txt
│   │   │   ├── StudyGaGp.exe
│   │   │   ├── StudyGaGp.pdb
│   │   │   ├── StudyGaGp.vshost.exe
│   │   │   └── 新建 文本文档.bat
│   │   ├── Test1
│   │   │   ├── Common.dll
│   │   │   ├── Common.pdb
│   │   │   ├── GaGp.vshost.exe
│   │   │   ├── StudyGaGp.exe
│   │   │   ├── StudyGaGp.vshost.exe
│   │   │   └── StudyGaGp.vshost.exe.manifest
│   │   └── Test2
│   │   ├── Common.dll
│   │   ├── Common.pdb
│   │   ├── MyGEP.vshost.exe
│   │   ├── StudyGaGp.exe
│   │   └── StudyGaGp.vshost.exe
│   ├── Common
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── Common.dll
│   │   │   │   └── Common.pdb
│   │   │   └── Release
│   │   │   ├── Common.dll
│   │   │   └── Common.pdb
│   │   ├── Common.csproj
│   │   ├── GeneSymbol
│   │   │   ├── MathFunction.cs
│   │   │   └── Terminator.cs
│   │   ├── NeighborMode.cs
│   │   ├── obj
│   │   │   ├── Common.csproj.FileList.txt
│   │   │   ├── Debug
│   │   │   │   ├── Common.dll
│   │   │   │   └── Common.pdb
│   │   │   └── Release
│   │   │   ├── Common.dll
│   │   │   ├── Common.pdb
│   │   │   └── Refactor
│   │   │   └── Common.dll
│   │   ├── Permutation.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Selector.cs
│   │   ├── Tools.cs
│   │   └── WinApi.cs
│   ├── GA GP GEP.csproj
│   ├── MainProgram.cs
│   ├── MyGEPConsoleMutlGene.suo
│   ├── MyGEPConsole.suo
│   ├── MyGEP.suo
│   ├── obj
│   │   ├── Debug
│   │   │   ├── GA GP GEP.csproj.FileListAbsolute.txt
│   │   │   ├── Refactor
│   │   │   │   ├── MyGEP.exe
│   │   │   │   └── StudyGaGp.exe
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   ├── StudyGaGp.exe
│   │   │   └── StudyGaGp.pdb
│   │   ├── GA GP GEP.csproj.FileListAbsolute.txt
│   │   ├── ga gp gep.csproj.FileList.txt
│   │   ├── Gep 5 19.csproj.FileList.txt
│   │   ├── Gep 5 26.csproj.FileList.txt
│   │   ├── Gep 5 29.csproj.FileList.txt
│   │   ├── Gep 6 4.csproj.FileList.txt
│   │   ├── MyGEPConsole.csproj.FileList.txt
│   │   ├── MyGEPConsoleMutiGene.csproj.FileList.txt
│   │   ├── MyGEP.csproj.FileList.txt
│   │   ├── NormalGEPConsole.csproj.FileList.txt
│   │   ├── random constant.csproj.FileList.txt
│   │   ├── Release
│   │   │   ├── GA GP GEP.csproj.FileListAbsolute.txt
│   │   │   ├── Refactor
│   │   │   │   ├── MyGEP.exe
│   │   │   │   └── StudyGaGp.exe
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   ├── StudyGaGp.exe
│   │   │   └── StudyGaGp.pdb
│   │   ├── Test1
│   │   │   ├── GA GP GEP.csproj.FileListAbsolute.txt
│   │   │   ├── Refactor
│   │   │   │   └── StudyGaGp.exe
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   └── StudyGaGp.exe
│   │   └── Test2
│   │   ├── GA GP GEP.csproj.FileListAbsolute.txt
│   │   ├── Refactor
│   │   │   └── StudyGaGp.exe
│   │   ├── ResolveAssemblyReference.cache
│   │   └── StudyGaGp.exe
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── Test
│   │   ├── lengthtest.cs
│   │   ├── NewTest.cs
│   │   ├── SixMTest.cs
│   │   ├── StackTest.cs
│   │   └── vs.cs
│   ├── TreeTest.cs
│   ├── 信息素
│   │   ├── AntMatrix.cs
│   │   ├── MatrixGAEngine.cs
│   │   ├── MatrixGATest.cs
│   │   ├── MatrixStackChromosome.cs
│   │   ├── PMatrix.cs
│   │   └── Probability.cs
│   ├── 元胞自动机GP
│   │   ├── CellularGPEngineF.cs
│   │   └── CellularGPEngineN.cs
│   ├── 基因池
│   │   ├── CellularPoolEngine.cs
│   │   ├── GeneBit.cs
│   │   ├── GenePool.cs
│   │   ├── PoolSetting.cs
│   │   └── PoolTest.cs
│   ├── 引擎
│   │   ├── Engine.cs
│   │   ├── GA
│   │   │   ├── CloneSelectGAEngine.cs
│   │   │   ├── GAEnergeEngine.cs
│   │   │   ├── GAEngine.cs
│   │   │   ├── GAEngineF.cs
│   │   │   └── GeneralGAEngine.cs
│   │   ├── GEP
│   │   │   └── GEPEngine.cs
│   │   └── 元胞自动机GP
│   │   ├── CellularEnergeGPEngine2.cs
│   │   ├── CellularEnergeGPEngine.cs
│   │   ├── CellularGeneralGPEngine.cs
│   │   ├── CellularGPEngine.cs
│   │   ├── CellularGPEngineR2.cs
│   │   └── CellularGPEngineRemoveBad.cs
│   ├── 染色体
│   │   ├── Chromosome.cs
│   │   ├── GEP
│   │   │   ├── GEPChromosome.cs
│   │   │   ├── GEPCTreeChromosome.cs
│   │   │   ├── PostfixCtreeChromosome.cs
│   │   │   ├── PostfixGEPChromosome.cs
│   │   │   └── PrefixGEPChromosome.cs
│   │   ├── GP
│   │   │   ├── GPTreeChromosome.cs
│   │   │   ├── GPTreeChromosomeTest.cs
│   │   │   ├── MGPChromosome.cs
│   │   │   ├── Modified_MGPChromosome.cs
│   │   │   └── TreeTest.cs
│   │   ├── 基于堆栈的染色体
│   │   │   ├── MEStackChromosome.cs
│   │   │   ├── MGMEStackChromosome.cs
│   │   │   ├── MLMEStackChromosome2.cs
│   │   │   ├── MLMEStackChromosome.cs
│   │   │   ├── RealCodedStackChromosome2.cs
│   │   │   ├── RealCodedStackChromosome2WithCoefficient.cs
│   │   │   ├── RealCodedStackChromosome2WithFitness.cs
│   │   │   ├── RealCodedStackChromosome.cs
│   │   │   ├── RealCodedStackChromosomeWithFitness.cs
│   │   │   └── StackChromosome.cs
│   │   └── 完全树染色体
│   │   ├── CTreeChromosomeNoSFunction.cs
│   │   ├── CTreeChromosomeSFunctionNoT.cs
│   │   ├── CTreeChromosomeSFunctionWithT.cs
│   │   └── MatrixChromosome.cs
│   ├── 设置
│   │   ├── CellularEngineConfig.cs
│   │   ├── ChromosomeConfig.cs
│   │   ├── CommonEngineConfig.cs
│   │   ├── Config.cs
│   │   └── MatrixConfig.cs
│   └── 问题
│   ├── 1D SR.cs
│   ├── 2D SR.cs
│   ├── Bug Prediction.cs
│   ├── Even Parity Problem.cs
│   ├── Paper Exprement2.cs
│   ├── Paper Exprement.cs
│   ├── Problem.cs
│   ├── RealData Exprement2.cs
│   ├── RealData Exprement.cs
│   ├── SixMut.cs
│   ├── Symbolic Regression.cs
│   └── Test.cs
├── GenePoolTest
│   ├── bin
│   │   ├── Debug
│   │   │   ├── Common.dll
│   │   │   ├── Common.pdb
│   │   │   ├── GenePoolTest.exe
│   │   │   ├── GenePoolTest.pdb
│   │   │   ├── StudyGaGp.exe
│   │   │   └── StudyGaGp.pdb
│   │   └── Release
│   │   ├── Common.dll
│   │   ├── Common.pdb
│   │   ├── GenePoolTest.exe
│   │   ├── GenePoolTest.pdb
│   │   ├── GenePoolTest.vshost.exe
│   │   ├── StudyGaGp.exe
│   │   └── StudyGaGp.pdb
│   ├── GenePoolTest.csproj
│   ├── obj
│   │   ├── Debug
│   │   │   ├── GenePoolTest.csproj.FileListAbsolute.txt
│   │   │   ├── GenePoolTest.exe
│   │   │   └── GenePoolTest.pdb
│   │   ├── GenePoolTest.csproj.FileList.txt
│   │   └── Release
│   │   ├── GenePoolTest.csproj.FileListAbsolute.txt
│   │   ├── GenePoolTest.exe
│   │   └── GenePoolTest.pdb
│   ├── Program.cs
│   └── Properties
│   └── AssemblyInfo.cs
├── GPUI
│   ├── App.xaml
│   ├── App.xaml.cs
│   ├── bin
│   │   └── Release
│   │   ├── Common.dll
│   │   ├── Common.pdb
│   │   ├── GPUI.exe
│   │   ├── GPUI.pdb
│   │   └── StudyGaGp.exe
│   ├── GPUI.csproj
│   ├── obj
│   │   └── Release
│   │   ├── App.g.cs
│   │   ├── GPUI.csproj.FileListAbsolute.txt
│   │   ├── GPUI.csproj.GenerateResource.Cache
│   │   ├── GPUI.exe
│   │   ├── GPUI.g.resources
│   │   ├── GPUI_MarkupCompile.cache
│   │   ├── GPUI.pdb
│   │   ├── GPUI.Properties.Resources.resources
│   │   ├── ResolveAssemblyReference.cache
│   │   ├── TempPE
│   │   │   └── Properties.Resources.Designer.cs.dll
│   │   ├── Window1.baml
│   │   └── Window1.g.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── Window1.xaml
│   └── Window1.xaml.cs
├── PSO
│   ├── bin
│   │   ├── Debug
│   │   │   ├── Common.dll
│   │   │   ├── Common.pdb
│   │   │   ├── PSO.exe
│   │   │   ├── PSO.pdb
│   │   │   ├── PSO.vshost.exe
│   │   │   ├── PSO.vshost.exe.manifest
│   │   │   ├── StudyGaGp.exe
│   │   │   └── StudyGaGp.pdb
│   │   └── Release
│   │   ├── Common.dll
│   │   ├── Common.pdb
│   │   ├── PSO.exe
│   │   ├── PSO.pdb
│   │   ├── PSO.vshost.exe
│   │   ├── PSO.vshost.exe.manifest
│   │   ├── StudyGaGp.exe
│   │   └── StudyGaGp.pdb
│   ├── CellularPsoEngine.cs
│   ├── MinProblem.cs
│   ├── obj
│   │   ├── Debug
│   │   │   ├── PSO.csproj.FileListAbsolute.txt
│   │   │   ├── PSO.exe
│   │   │   ├── PSO.pdb
│   │   │   ├── Refactor
│   │   │   │   └── PSO.exe
│   │   │   └── ResolveAssemblyReference.cache
│   │   ├── PSO.csproj.FileList.txt
│   │   └── Release
│   │   ├── PSO.csproj.FileListAbsolute.txt
│   │   ├── PSO.exe
│   │   ├── PSO.pdb
│   │   ├── Refactor
│   │   │   └── PSO.exe
│   │   └── ResolveAssemblyReference.cache
│   ├── Particle.cs
│   ├── Program.cs
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── PsoConfig.cs
│   ├── PSO.csproj
│   ├── PsoEngine.cs
│   ├── PsoProblem.cs
│   └── PsoShower.cs
├── PsoShower
│   ├── bin
│   │   ├── Debug
│   │   │   ├── Common.dll
│   │   │   ├── Common.pdb
│   │   │   ├── PSO.exe
│   │   │   ├── PSO.pdb
│   │   │   ├── PsoShower.exe
│   │   │   ├── PsoShower.pdb
│   │   │   ├── PsoShower.vshost.exe
│   │   │   ├── PsoShower.vshost.exe.manifest
│   │   │   ├── StudyGaGp.exe
│   │   │   └── StudyGaGp.pdb
│   │   └── Release
│   │   ├── Common.dll
│   │   ├── Common.pdb
│   │   ├── PSO.exe
│   │   ├── PSO.pdb
│   │   ├── PsoShower.exe
│   │   ├── PsoShower.pdb
│   │   ├── PsoShower.vshost.exe
│   │   ├── PsoShower.vshost.exe.manifest
│   │   ├── StudyGaGp.exe
│   │   └── StudyGaGp.pdb
│   ├── Form1.cs
│   ├── Form1.Designer.cs
│   ├── Form1.resx
│   ├── obj
│   │   ├── Debug
│   │   │   ├── PsoShower.csproj.FileListAbsolute.txt
│   │   │   ├── PsoShower.csproj.GenerateResource.Cache
│   │   │   ├── PsoShower.exe
│   │   │   ├── PsoShower.Form1.resources
│   │   │   ├── PsoShower.pdb
│   │   │   ├── PsoShower.Properties.Resources.resources
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   └── TempPE
│   │   │   └── Properties.Resources.Designer.cs.dll
│   │   ├── PsoShower.csproj.FileList.txt
│   │   └── Release
│   │   ├── build.force
│   │   ├── PsoShower.csproj.FileListAbsolute.txt
│   │   ├── PsoShower.csproj.GenerateResource.Cache
│   │   ├── PsoShower.exe
│   │   ├── PsoShower.Form1.resources
│   │   ├── PsoShower.pdb
│   │   ├── PsoShower.Properties.Resources.resources
│   │   ├── ResolveAssemblyReference.cache
│   │   └── TempPE
│   │   └── Properties.Resources.Designer.cs.dll
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   └── PsoShower.csproj
├── SwarmAI genedata.sln
├── SwarmAI genedata.suo
└── Test
├── App.xaml
├── App.xaml.cs
├── bin
│   └── Release
│   ├── Test.exe
│   ├── Test.pdb
│   ├── Test.vshost.exe
│   └── Test.vshost.exe.manifest
├── obj
│   └── Release
│   ├── App.g.cs
│   ├── TempPE
│   │   └── Properties.Resources.Designer.cs.dll
│   ├── Test.csproj.FileListAbsolute.txt
│   ├── Test.csproj.GenerateResource.Cache
│   ├── Test.exe
│   ├── Test.g.resources
│   ├── Test_MarkupCompile.cache
│   ├── Test.pdb
│   ├── Test.Properties.Resources.resources
│   ├── Window1.baml
│   └── Window1.g.cs
├── Properties
│   ├── AssemblyInfo.cs
│   ├── Resources.Designer.cs
│   ├── Resources.resx
│   ├── Settings.Designer.cs
│   └── Settings.settings
├── Test.csproj
├── Window1.xaml
└── Window1.xaml.cs

103 directories, 379 files

标签:

实例下载地址

群集智能算法C#

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警