| 548 | } |
| 549 | |
| 550 | inline double MBTR::k3GeomAngle(const int &i, const int &j, const int &k, const vector<vector<double> > &distances) |
| 551 | { |
| 552 | double cosine = this->k3GeomCosine(i, j, k, distances); |
| 553 | double angle = acos(cosine)*180.0/PI; |
| 554 | |
| 555 | return angle; |
| 556 | } |
| 557 | |
| 558 | inline double MBTR::k3WeightExponential(const int &i, const int &j, const int &k, const vector<vector<double> > &distances, double scale) |
| 559 | { |
nothing calls this directly
no test coverage detected