/usr/include/JAGS/graph/VectorStochasticNode.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 36 37 38 39 40 41 42 | #ifndef VECTOR_STOCHASTIC_NODE_H_
#define VECTOR_STOCHASTIC_NODE_H_
#include <graph/StochasticNode.h>
namespace jags {
class VectorDist;
/**
* @short Vector-valued Node defined by the BUGS-language operator ~
*/
class VectorStochasticNode : public StochasticNode {
VectorDist const * const _dist;
std::vector<unsigned int> _lengths;
void sp(double *lower, double *upper, unsigned int length,
unsigned int chain) const;
public:
/**
* Constructs a new StochasticNode given a vector distribution and
* a vector of parent nodes, considered as parameters to the
* distribution.
*/
VectorStochasticNode(VectorDist const *dist, unsigned int nchain,
std::vector<Node const *> const ¶meters,
Node const *lower, Node const *upper);
double logDensity(unsigned int chain, PDFType type) const;
void randomSample(RNG *rng, unsigned int chain);
void truncatedSample(RNG *rng, unsigned int chain,
double const *lower, double const *upper);
void deterministicSample(unsigned int chain);
bool checkParentValues(unsigned int chain) const;
//StochasticNode *clone(std::vector<Node const *> const &parents,
//Node const *lower, Node const *upper) const;
unsigned int df() const;
double KL(unsigned int chain1, unsigned int chain2, RNG *rng,
unsigned int nrep) const;
};
} /* namespace jags */
#endif /* VECTOR_STOCHASTIC_NODE_H_ */
|