seminaivescaler.h

来自「粗糙集应用软件」· C头文件 代码 · 共 44 行

H
44
字号
//-------------------------------------------------------------------
// Author........: Aleksander 豩rn
// Date..........:
// Description...:
// Revisions.....:
//===================================================================

#ifndef __SEMINAIVESCALER_H__
#define __SEMINAIVESCALER_H__

#include <copyright.h>

#include <kernel/algorithms/naivescaler.h>

//-------------------------------------------------------------------
// Class.........: SemiNaiveScaler
// Author........: Aleksander 豩rn
// Date..........:
// Description...: Similar to NaiveScaler, but with some additional
//                 logic to handle inconsistent cases.
// Revisions.....:
//===================================================================

class SemiNaiveScaler : public NaiveScaler {
protected:

	//- Methods inherited from NaiveScaler.............................
  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........................................
  SemiNaiveScaler();
  virtual ~SemiNaiveScaler();

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

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

};

#endif

⌨️ 快捷键说明

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