/usr/include/JAGS/function/PFunction.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 | #ifndef P_FUNCTION_H_
#define P_FUNCTION_H_
#include "DPQFunction.h"
namespace jags {
/**
* @short Cumulative distribution function for an R Scalar distribution
*/
class PFunction : public DPQFunction
{
public:
PFunction(RScalarDist const *dist);
bool checkParameterValue(std::vector<double const *> const &args) const;
double evaluate(std::vector <double const *> const &args) const;
};
}
#endif /* P_FUNCTION_H_ */
|