/usr/include/libphylo/njConstrain.h is in rate4site 3.0.0-5.
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 | // $Id: njConstrain.h 962 2006-11-07 15:13:34Z privmane $
#ifndef ___NJ_CONSTRAINT
#define ___NJ_CONSTRAINT
#include <map>
#include "sequenceContainer.h"
#include "tree.h"
using namespace std;
class njConstraint {
public:
njConstraint(const tree& starttree, const tree& constraintTree);
bool isCompatible(const tree::nodeP& n1, const tree::nodeP& n2, const bool verbose=false) const;
void join(const tree::nodeP& n1, const tree::nodeP& n2, const tree::nodeP& newFather);
void output(ostream &out) const;
private:
tree _cTree; // constriant tree
map<tree::nodeP,tree::nodeP> _interTreeMap;
};
ostream &operator<<(ostream &out, const njConstraint &c);
#endif // ___NJ_CONSTRAINT
|