distribution.h
来自「This program proposed improved adaptive 」· C头文件 代码 · 共 43 行
H
43 行
// 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 + =
减小字号Ctrl + -
显示快捷键?