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

📄 distribution.h

📁 This program proposed improved adaptive genetic algorithms saccording to the idea that the best indi
💻 H
字号:
// distribution.h: interface for the distribution class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_DISTRIBUTION_H__B24C9AFA_8B23_4423_8FF3_AA7684C884EF__INCLUDED_)
#define AFX_DISTRIBUTION_H__B24C9AFA_8B23_4423_8FF3_AA7684C884EF__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "global.h"
#include "powermodel.h"
#include "pressmodel.h"
#include "slipmodel.h"
#include "speedmodel.h"
#include "torquemodel.h"
#include "initialdistribute.h"
#include "de_dragmodel.h"
#include "GA.h"


class distribution  
{
public:
	distribution();
	virtual ~distribution();
	global distribute(double H1,double h5,int m,double B);
		
protected:
	double *dis_h;
	double rf;
	double H[5];
	double h[5];
	double power[4];
	double *init_h;
	
	


};

#endif // !defined(AFX_DISTRIBUTION_H__B24C9AFA_8B23_4423_8FF3_AA7684C884EF__INCLUDED_)

⌨️ 快捷键说明

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