资源简介
多目标粒子群的论文和代码。绝对的经典。目前就找到这么一个程序,能够很好地运行,没有错误。而且对照着原论文看很容易看明白。希望给需要的人以帮助,大家一起进步
代码片段和文件信息
/*************************************************************************
* 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 100 /* set functions code */
#define popsize 100 /* set number of particles in the population */
#define maxgen 100 /* set maximum number of generations */
#define optimization 1 /* set optimization type 0 for min 1 for max */
#define archive_size 500 /* set capacity of archive */
#define maxfun 2 /* set maximum number of objective functions */
#define maxvar 2 /* set maximum number of variables */
#define verbose 1 /* verbosity level 01 *
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 28312 2006-02-17 06:12 mopso\mopsocd.c
文件 6681 2014-03-20 15:39 mopso\randomlib.h
文件 1381 2006-02-17 06:12 mopso\test-fun.h
文件 381482 2014-03-06 14:19 mopso\参考文献188--密集距离机制.pdf
目录 0 2014-06-25 16:00 mopso
----------- --------- ---------- ----- ----
417856 5
- 上一篇:华为MA5620ONU系列密码清除
- 下一篇:openwrt路由器之前文件传输
相关资源
- 书中源程序代码.rar
- 周立功公司电脑鼠比赛比较好用的源
- ADF4106代码
- 美赛论文\\MCM两个word模板+论文格式
- Delta机器人RBE595高级并行机器人项目代
- 09年电子设计大赛无线识别装置论文
- 小型飞机票预定系统,源代码+数据库
- 课程代码与工具.rar
- xv6 源代码
- 停车场 数据结构课程设计源代码
- 2019年数学建模美赛M奖论文-F题数字货
- miniFilter(所有框架代码以及对应的
- 并行遗传算法的程序源代码
- 广工操作系统课程设计文档+代码+可执
- CUBEMX生成STM32代码删除编译信息文件(
- 开关稳压电源2007电子设计竞赛 E题内
- 多线程字符串代码文件搜索器
- Processing写的简单AR代码
- 电气专业毕业论文-智能冰箱控制器
- 基于PLC的花式喷泉系统设计,花式喷
- org.eclipse.jface.text修改版
- DDS好的代码
- 软件源代码安全测试工具
- 硕士毕业论文答辩ppt很实用的东西
- 处理机调度算法实现文档+代码
- 6个16X16LED点阵 滚动显示 源代码和pr
- 人工智能 期末论文
- 基于STM32单片机的指纹识别模块的测试
- 基于labview图像采集与处理论文(本科
- 图像相似度 感知相似度计算代码
评论
共有 条评论