资源简介
基于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语言
- c语言实现 通过rs232可实现上位机和下
- 火车票管理系统C语言数据结构
- 纯C语言写的https模拟GET和POST
- C语言CRC32校验
- C语言名题精选百则源代码
- GoBackN协议的C语言实现
- 算术编码纯C语言实现
- C语言windowlinux平台的SNTP实现
- the C programming language ( kindle 版)
- 前向纠错的多个算法C语言
- SM3算法C语言实现
-
单项锁相环 MATLAB Simuli
nk仿真 C语言 - LDPC源代码c语言matlab.rar
-
自抗扰控制器C语言实现Simuli
nk转化 - 基于8051单片机的数字电压表设计
- AES5种加密模式源码C语言
- 图的深度优先遍历与广度优先遍历(
- C语言实现TFTP客户端代码
- 5个遗传算法C语言源码
- hashtable-C语言版折叠法+单链表
- c语言课件-循环结构
- 用c语言求梯度的算法
- C语言超市收银模拟系统
- B样条曲线绘制、bezier曲线绘制c语言实
- 背包问题实验报告C语言实现、文件输
- C语言编写的pl0语言编译器
- 矩阵键盘C语言代码,proteus仿真电路
- C语言编写班费管理系统
- 教学计划编制 数据结构 C语言
评论
共有 条评论