资源简介
多目标粒子群的论文和代码。绝对的经典。目前就找到这么一个程序,能够很好地运行,没有错误。而且对照着原论文看很容易看明白。希望给需要的人以帮助,大家一起进步

代码片段和文件信息
/*************************************************************************
* 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路由器之前文件传输
相关资源
- bp神经网络源代码,可直接运行
- 随机森林R语言代码
- 计算机图形学 边填充算法实现代码
- 直流无刷电机方波驱动 stm32 例程代码
- 仿知乎界面小程序源代码
- 贪吃蛇源代码.fla
- The direction of synaptic plasticity mediated
- Reparatory Effects of Nicotine on NMDA Recepto
- Apolipoprotein E4 Impairs in vivo Hippocampal
- Histamine excites rat lateral vestibular nucle
- Diltiazem augmented pentobarbital-induced LORR
- Fabrication and all-optical poling characteris
- 基于PCIe的FPGA动态配置设计与实现
- 周立功开发板ProASIC3实验-syn_FIFO代码
- IMX385驱动代码.zip
- 修正Sway-Rocking土-结构相互作用模型的
- dotnet 写字板 实验 源代码 不好请要不
- 图像二维小波变换的实现源代码
- 八三编码器设计 VHDL代码 简单,包附
- linux应用层的华容道游戏源代码
- 交通咨询模拟系统完整代码
- http请求状态代码
- 数值分析所有实验代码
- 网上拍卖系统完整源代码
- 音乐代码转换软件 单片机编程时用
- CSMA/CD等动画演示加源代码
- silicon lab公司的收音IC SI47XX全套开发工
- 用51单片机实现G代码翻译
- 合同管理系统的源代码(附数据库)
- 用VC 编写的仿QQ聊天室程序源代码
评论
共有 条评论