#ifndef CENSORED_SAMPLER_H_
#define CENSORED_SAMPLER_H_

#include <sampler/GibbsSampler.h>

/**
 *
 * A sampler for censored real-valued distributions.
 *
 */
class Censored : public GibbsSampler {
 public:
  Censored(StochasticNode *snode, Graph const &graph);
  ~Censored();

  static bool canSample(StochasticNode *snode, Graph const &graph);
  void update();
  void burninOff();
};

#endif /* CONJUGATE_NORMAL_H_ */


syntax highlighted by Code2HTML, v. 0.9.1