| 523 | } |
| 524 | |
| 525 | inline double MBTR::k2WeightSquare(const int &i, const int &j, const vector<vector<double> > &distances) |
| 526 | { |
| 527 | double dist = distances[i][j]; |
| 528 | double value = 1/(dist*dist); |
| 529 | return value; |
| 530 | } |
| 531 | |
| 532 | inline double MBTR::k3GeomCosine(const int &i, const int &j, const int &k, const vector<vector<double> > &distances) |
| 533 | { |
nothing calls this directly
no outgoing calls
no test coverage detected