/usr/include/libMUSCLE-3.7/libMUSCLE/clustset.h is in libmuscle-3.7-dev 3.7+4565-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 | #ifndef ClustSet_h
#define ClustSet_h
namespace muscle {
enum JOIN;
enum LINKAGE;
class Clust;
class ClustSet
{
public:
virtual unsigned GetLeafCount() = 0;
virtual double ComputeDist(const Clust &C, unsigned uNodeIndex1,
unsigned uNodeIndex2) = 0;
virtual void JoinNodes(const Clust &C, unsigned uLeftNodeIndex,
unsigned uRightNodeIndex, unsigned uJoinedNodeIndex,
double *ptrdLeftLength, double *ptrdRightLength) = 0;
virtual const char *GetLeafName(unsigned uNodeIndex) = 0;
virtual unsigned GetLeafId(unsigned uNodeIndex) = 0;
};
} // namespace muscle
#endif // ClustSet_h
|