This file is indexed.

/usr/include/libphylo/computeDownAlg.h is in rate4site 3.0.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
43
44
45
46
47
48
49
// $Id: computeDownAlg.h 3107 2007-12-27 12:38:05Z adist $

#ifndef ___COMPUTE_DOWN_ALG
#define ___COMPUTE_DOWN_ALG

#include "definitions.h"
#include "tree.h"
#include "suffStatComponent.h"
#include "sequenceContainer.h"
#include "computePijComponent.h"


class computeDownAlg {
public: 
	void fillComputeDown(const tree& et,
					   const sequenceContainer& sc,
					   const int pos,
					   const computePijHom& pi,
					   suffStatGlobalHomPos& ssc,
					   const suffStatGlobalHomPos& cup);

	void fillComputeDown(const tree& et,
					   const sequenceContainer& sc,
					   const int pos,
					   const stochasticProcess& sp,
					   suffStatGlobalHomPos& ssc,
					   const suffStatGlobalHomPos& cup);

	void fillComputeDownSpecificRate(const tree& et,
					   const sequenceContainer& sc,
					   const int pos,
					   const stochasticProcess& sp,
					   suffStatGlobalHomPos& ssc,
					   const suffStatGlobalHomPos& cup,
					   const MDOUBLE gRate);

/** compute the down computation for a non-reversible model:
	each down computation is conditioned on the state at the root.
	This means that the vector field is of one additional dimension (the alphabet at the root)
	and hence the use of the suffStatGlobalGamPos (=vector<suffStatGlobalHomPos>)
**/
	void fillComputeDownNonReversible(const tree& et,
		const sequenceContainer& sc,
		const int pos,
		const computePijHom& pi,
		suffStatGlobalGamPos& sscGivenRoot,
		const suffStatGlobalHomPos& cup);
};
#endif