⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gadcrowdingga.h

📁 麻省理工开发的免费遗传算法类库GAlib,很好用
💻 H
字号:
// $Header: /nfs/dsi/cvs/galib/ga/GADCrowdingGA.h,v 1.1.1.1 1999/11/11 18:56:03 mbwall Exp $/* ----------------------------------------------------------------------------  dcrowdingga.h  mbwall 29mar99  Copyright (c) 1999 Matthew Wall, all rights reserved  Header file for the steady-state genetic algorithm class.---------------------------------------------------------------------------- */#ifndef _ga_deterministic_crowding_ga_h_#define _ga_deterministic_crowding_ga_h_#include <ga/GABaseGA.h>class GADCrowdingGA : public GAGeneticAlgorithm {public:  GADefineIdentity("GADeterministicCrowdingGA", 241);  GADCrowdingGA(const GAGenome& g) : GAGeneticAlgorithm(g) {}  virtual ~GADCrowdingGA() {}  virtual void initialize(unsigned int seed=0);  virtual void step();  GADCrowdingGA& operator++() { step(); return *this; }};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -