/usr/include/JAGS/sampler/ImmutableSampleMethod.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 | #ifndef IMMUTABLE_SAMPLE_METHOD_H_
#define IMMUTABLE_SAMPLE_METHOD_H_
namespace jags {
struct RNG;
/**
* @short Abstract class for immutable sampling methods
*/
class ImmutableSampleMethod
{
public:
virtual ~ImmutableSampleMethod();
/**
* Draws another sample from the target distribution
*/
virtual void update(unsigned int chain, RNG *rng) const = 0;
};
} /* namespace jags */
#endif /* IMMUTABLE_SAMPLE_METHOD_H_ */
|