rsesreducer.h

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

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

#ifndef __RSESREDUCER_H__
#define __RSESREDUCER_H__

#include <copyright.h>

#include <kernel/algorithms/reducer.h>

//-------------------------------------------------------------------
// Class.........: RSESReducer
// Author........: Aleksander 豩rn
// Date..........:
// Description...: Encapsulation class for RSES code performing
//                 reduct calculation.
// Revisions.....:
//===================================================================

class RSESReducer : public Reducer {
public:

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

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

  //- Methods inherited from Algorithm...............................
	virtual bool IsApplicable(const Structure &structure, bool warn = true) const;

  //- Methods inherited from Reducer.................................
	virtual bool             UseIDG() const;
	virtual bool             UseIDG(bool idg);
	virtual const String    &GetIDGFilename() const;
	virtual bool             SetIDGFilename(const String &filename);
	virtual bool             UseBRT() const;
	virtual bool             UseBRT(bool brt);
	virtual float            GetBRTPrecision() const;
	virtual bool             SetBRTPrecision(float precision);
	virtual bool             PrecomputeMatrix() const;
	virtual bool             PrecomputeMatrix(bool precompute);

};

#endif

⌨️ 快捷键说明

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