/usr/include/JAGS/sampler/MutableSampleMethod.h is in jags 4.2.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | #ifndef MUTABLE_SAMPLE_METHOD_H_
#define MUTABLE_SAMPLE_METHOD_H_
namespace jags {
struct RNG;
/**
* @short Abstract class for mutable sampling methods
*/
class MutableSampleMethod
{
public:
virtual ~MutableSampleMethod();
/**
* Draws another sample from the target distribution
*/
virtual void update(RNG *rng) = 0;
/**
* Indicates whether the sample method has an adaptive mode.
*/
virtual bool isAdaptive() const = 0;
/**
* Turns off adaptive mode
*/
virtual void adaptOff() = 0;
/**
* Checks adaptation
*/
virtual bool checkAdaptation() const = 0;
};
} /* namespace jags */
#endif /* MUTABLE_SAMPLE_METHOD_H_ */
|