/usr/include/JAGS/function/ScalarLogDensity.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 | #ifndef SCALAR_LOG_DENSITY_H_
#define SCALAR_LOG_DENSITY_H_
#include <function/ScalarFunction.h>
namespace jags {
class ScalarDist;
/**
* @short Log density function for a scalar-valued Distribution
*/
class ScalarLogDensity : public ScalarFunction
{
ScalarDist const *_dist;
public:
ScalarLogDensity(ScalarDist const *dist);
bool checkParameterValue(std::vector<double const *> const &args) const;
double evaluate(std::vector <double const *> const &args) const;
};
}
#endif /* SCALAR_LOG_DENSITY_H_ */
|