wolff.h

来自「The package includes 3 Matlab-interfaces」· C头文件 代码 · 共 36 行

H
36
字号
#include "MonteCarlo.h"#include "PottsMRF.h"#ifndef __WOLFF__#define __WOLFF__class Wolff : public MonteCarlo {  /**     This class makes inference using Wolff sampling method,     where in each steps one cluster can change its state     This method is specific for q-state Potts model        Part of the c_inference package     @version November 2004     @author Talya Meltzer  */   public:  // ctor  Wolff(PottsMRF const* mrf, int* startX, int burningTime, int samplingInterval, int S) :    MonteCarlo(mrf,startX,burningTime,samplingInterval,S) {}    virtual ~Wolff() {} // dtor protected:  virtual void transition();  int cluster(int i, int i_nei, int new_xi);  bool accept(int i, int i_nei);  };#endif

⌨️ 快捷键说明

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