├── .gitignore ├── .idea ├── Intelligent_Algrithm.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── Artificial_Bee_Colony └── ABC.m ├── Differential_Evolution └── DE.m ├── Eddy_Current └── VS.m ├── Genetic_Algorithm ├── GA.py ├── SGA.m └── __init__.py ├── LICENSE ├── Particle_Swarm_Optimization └── PSO.m ├── README.md └── Teaching_Learning_Based_Optimization └── TLBO.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoyuantao/Intelligent_Algrithm/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/Intelligent_Algrithm.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoyuantao/Intelligent_Algrithm/HEAD/.idea/Intelligent_Algrithm.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoyuantao/Intelligent_Algrithm/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoyuantao/Intelligent_Algrithm/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoyuantao/Intelligent_Algrithm/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoyuantao/Intelligent_Algrithm/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /Artificial_Bee_Colony/ABC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoyuantao/Intelligent_Algrithm/HEAD/Artificial_Bee_Colony/ABC.m -------------------------------------------------------------------------------- /Differential_Evolution/DE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoyuantao/Intelligent_Algrithm/HEAD/Differential_Evolution/DE.m -------------------------------------------------------------------------------- /Eddy_Current/VS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoyuantao/Intelligent_Algrithm/HEAD/Eddy_Current/VS.m -------------------------------------------------------------------------------- /Genetic_Algorithm/GA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoyuantao/Intelligent_Algrithm/HEAD/Genetic_Algorithm/GA.py -------------------------------------------------------------------------------- /Genetic_Algorithm/SGA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoyuantao/Intelligent_Algrithm/HEAD/Genetic_Algorithm/SGA.m -------------------------------------------------------------------------------- /Genetic_Algorithm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoyuantao/Intelligent_Algrithm/HEAD/LICENSE -------------------------------------------------------------------------------- /Particle_Swarm_Optimization/PSO.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoyuantao/Intelligent_Algrithm/HEAD/Particle_Swarm_Optimization/PSO.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Intelligent_Algrithm 2 | 智能优化算法 3 | -------------------------------------------------------------------------------- /Teaching_Learning_Based_Optimization/TLBO.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoyuantao/Intelligent_Algrithm/HEAD/Teaching_Learning_Based_Optimization/TLBO.m --------------------------------------------------------------------------------