This file is indexed.

/usr/include/libMUSCLE-3.7/libMUSCLE/scorehistory.h is in libmuscle-3.7-dev 3.7+4565-1.

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
#ifndef ScoreHistory_h
#define ScoreHistory_h

namespace muscle {

class ScoreHistory
	{
public:
	ScoreHistory(unsigned uIters, unsigned uInternalNodeCount);
	~ScoreHistory();
	bool SetScore(unsigned uIter, unsigned uInternalNodeIndex, bool bRight, SCORE Score);
	void LogMe() const;
	SCORE GetScore(unsigned uIter, unsigned uInternalNodeIndex, bool bReversed,
	  bool bRight) const;

private:
	SCORE **m_Score;
	bool **m_bScoreSet;
	unsigned m_uIters;
	unsigned m_uNodeCount;
	};

} // namespace muscle

#endif	// ScoreHistory_h