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

📄 naivescaler.h

📁 粗糙集应用软件
💻 H
字号:
//-------------------------------------------------------------------
// Author........: Aleksander 豩rn/Knut Magne Risvik
// Date..........:
// Description...:
// Revisions.....:
//===================================================================

#ifndef __NAIVESCALER_H__
#define __NAIVESCALER_H__

#include <copyright.h>

#include <kernel/algorithms/orthogonalscaler.h>

//-------------------------------------------------------------------
// Class.........: NaiveScaler
// Author........: Aleksander 豩rn/Knut Magne Risvik
// Date..........:
// Description...:
// Revisions.....:
//===================================================================

class NaiveScaler : public OrthogonalScaler {
protected:

	//- New methods....................................................
  virtual bool SkipCut(const Vector(OVPair) &objects, int i, const Vector(int) &decisions_l, const Vector(int) &cardinalities_l, const Vector(int) &decisions_r, const Vector(int) &cardinalities_r) const;

public:

  //- Constructors/destructor........................................
  NaiveScaler();
  virtual ~NaiveScaler();

  //- Methods inherited from Identifier..............................
	DECLAREIDMETHODS()

	//- Methods inherited from OrthogonalScaler........................
  virtual bool FindCuts(const DecisionTable &table, int attribute_no, bool masked, Cuts &cuts) const;

	//- New methods....................................................
  virtual bool FindCuts(const DecisionTable &table, int attribute_no, bool masked, Cuts &cuts, Vector(int) *regions, int *no_regions) const;

};

#endif

⌨️ 快捷键说明

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