diff options
author | Pjotr Prins | 2018-09-06 06:35:59 +0000 |
---|---|---|
committer | Pjotr Prins | 2018-09-06 06:35:59 +0000 |
commit | 8010061e8af476d66a0ca6fb6d509b36acdb9b9a (patch) | |
tree | 0ee1c266985ea274d649b7ec4b24c6fb80ff1f1d /src/param.cpp | |
parent | d557b6e3cbf9cb39957e466b487db1dc55552676 (diff) | |
download | pangemma-8010061e8af476d66a0ca6fb6d509b36acdb9b9a.tar.gz |
Further debugging
Diffstat (limited to 'src/param.cpp')
-rw-r--r-- | src/param.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/param.cpp b/src/param.cpp index 68e9d63..12f4299 100644 --- a/src/param.cpp +++ b/src/param.cpp @@ -1364,9 +1364,9 @@ void compAKtoS(const gsl_matrix *A, const gsl_matrix *K, const size_t n_cvt, * 1,1:0 * 1,2:1 * 1,3:2 - * 2,2:3 - * 2,3:4 - * 3,3:5 + * 2,2:5 + * 2,3:6 + * 3,3:9 which is really the iteration moving forward along the diagonal and items to the right of it. @@ -1385,8 +1385,8 @@ size_t GetabIndex(const size_t a, const size_t b, const size_t n_cvt) { size_t index = (2 * cols - a1 + 2) * (a1 - 1) / 2 + b1 - a1; cout << "* GetabIndx " << a1 << "," << b1 << "," << cols << ":" << index << endl; return index; + // return ( b < a ? ((2 * cols - b + 2) * (b - 1) / 2 + a - b ): ((2 * cols - a + 2) * (a - 1) / 2 + b - a) ); - // return ( b < a ? ((2 * n - b + 2) * (b - 1) / 2 + a - b ): ((2 * n - a + 2) * (a - 1) / 2 + b - a) ); } // From an existing n by nd (centered) G matrix, compute the d+1 by |