资源简介
基于C语言的多目标粒子群优化算法,主要用于各种优化工作,例如机器人的运动轨迹的优化等等
代码片段和文件信息
/*************************************************************************
* This is an implementation of MOPSO-CDa multiobjective particle swarm *
* optimization algorithm using crowding distance *
* *
* For details please see: *
* C.R. Raquel and P.C. Naval Jr. An Effective Use of Crowding *
* Distance in Multiobjective Particle Swarm Optimization. *
* In Proc. of Genetic and Evolutionary Computation Conference *
* (GECCO 2005) Washington DC June 2005. *
* *
* E-mail address : cvmig@engg.upd.edu.ph *
* Version : mopsocd05b *
* Last updated : Fri Feb 17 2006 *
* *
* Random Generator Source code has been taken from Random Library found *
* at http://www.swin.edu.au/astronomy/pbourke/software/random/ *
* *
* Permission to use MOPSO-CD codes is hereby granted for academic and *
* research purposes only. Commercial usage of these codes is prohibited *
* without prior knowledge of the authors. In no way will the authors *
* be held responsible for any possible faulty operation of *
* software/hardware arising from the use of these codes. *
*************************************************************************/
/*************************************************
FUNCTION CODE OPTIMIZATION objectIVE VARIABLES
Kita 100 maximize (1) 2 2
Kursawe 200 minimize (0) 2 3
Deb 300 minimize (0) 2 2
DTLZ6 500 minimize (0) 3 22
<- put yours here and in test-fun.h
/* Initialize your function in initialize_pop() */
/* Put your function in evaluate() */
/* Put your constraints if any in check_constraints(...) */
/* See also maintain_particles() routine */
/**************************************************/
#define function 500 /* set functions code */
#define popsize 100 /* set number of particles in the population */
#define maxgen 1000 /* set maximum number of generations */
#define optimization 0 /* set optimization type 0 for min 1 for max */
#define archive_size 500 /* set capacity of archive */
#define maxfun 3 /* set maximum number of objective functions */
#define maxvar 22 /* set maximum number of variables */
#define verbose 1 /* verbosity level 01 */
#define print 属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 329 2010-04-01 01:05 mopsocd05b\archive.out
文件 2158 2006-02-17 06:12 mopsocd05b\LICENSE
文件 208 2006-02-17 06:12 mopsocd05b\Makefile
文件 27819 2010-04-01 01:05 mopsocd05b\mopsocd.c
文件 31104 2010-04-01 01:05 mopsocd05b\mopsocd.exe
文件 16996 2010-04-01 01:05 mopsocd05b\mopsocd.o
文件 240 2010-03-23 22:37 mopsocd05b\multiob
文件 115071 2010-04-01 01:05 mopsocd05b\output.out
文件 0 2010-04-01 01:05 mopsocd05b\plot.out
文件 6603 2006-02-17 06:12 mopsocd05b\randomlib.h
文件 1381 2006-02-17 06:12 mopsocd05b\test-fun.h
目录 0 2010-04-01 01:05 mopsocd05b
----------- --------- ---------- ----- ----
201909 12
- 上一篇:测试通过TMP75源码
- 下一篇:飞行弹道计算C语言
相关资源
- 操作系统c语言模拟文件管理系统844
- C语言开发实战宝典
- C++中头文件与源文件的作用详解
- C语言代码高亮html输出工具
- 猜数字游戏 c语言代码
- C语言课程设计
- 数字电位器C语言程序
- CCS FFT c语言算法
- 使用C语言编写的病房管理系统
- 通信过程中的RS编译码程序(c语言)
- 计算机二级C语言上机填空,改错,编
- 用回溯法解决八皇后问题C语言实现
- 简易教务管理系统c语言开发文档
- 操作系统课设 读写者问题 c语言实现
- 小波变换算法 c语言版
- C流程图生成器,用C语言代码 生成C语
- 3des加密算法C语言实现
- 简单的C语言点对点聊天程序
- 单片机c语言源程序(51定时器 八个按
- 个人日常财务管理系统(C语言)
- c语言电子商务系统
- 小甲鱼C语言课件 源代码
- 将图片转换为C语言数组的程序
- C语言实现的一个内存泄漏检测程序
- DES加密算法C语言实现
- LINUX下命令行界面的C语言细胞游戏
- 用单片机控制蜂鸣器播放旋律程序(
- 学校超市选址问题(数据结构C语言版
- 电子时钟 有C语言程序,PROTEUS仿真图
- 尚观培训linux许巍老师关于c语言的课
川公网安备 51152502000135号
评论
共有 条评论