Skip to content

Instantly share code, notes, and snippets.

View fattiger00's full-sized avatar
😇
Busy for work

NeZha fattiger00

😇
Busy for work
View GitHub Profile
@fattiger00
fattiger00 / PSO.cpp
Last active May 10, 2021 09:37
PSO ALGORITHM by cpp.
#include<iostream>
#include<random>
#include<math.h>
using namespace std;
//群体中的粒子数
#define SWARMSIZE 10
//值域大小 值域为:x为[0,SPACESIZE]
#define SPACESIZE 2
//迭代次数
static int generNum = 100;