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

📄 gaevaldata.h

📁 遗传算法工具箱C++
💻 H
字号:
// $Header$/* ----------------------------------------------------------------------------  eval.h  mbwall 3dec95  Copyright (c) 1995 Massachusetts Institute of Technology                     all rights reserved DESCRIPTION:  This is the basic interface for the object that contains evaluation data.  Itcan be used with genomes and/or populations in combination with their respective evaluation methods.---------------------------------------------------------------------------- */#ifndef _ga_eval_h_#define _ga_eval_h_class GAEvalData {public:  GAEvalData() {}  GAEvalData(const GAEvalData&) {}  virtual ~GAEvalData() {}  GAEvalData& operator=(const GAEvalData& orig)     { if(&orig != this) copy(orig); return *this; }  virtual GAEvalData* clone() const =0;  virtual void copy(const GAEvalData&) =0;};#endif

⌨️ 快捷键说明

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