diff options
author | Pjotr Prins | 2018-08-31 15:15:36 +0000 |
---|---|---|
committer | Pjotr Prins | 2018-08-31 15:15:36 +0000 |
commit | bb557b6977c39514e53b5dc84c5bf589cb5eec84 (patch) | |
tree | 8dcfc3320eef5c09ab91d6e3bd85646b73cf7f59 /src/param.cpp | |
parent | 59f453afe05b0b637edeff3127fb7ef7be5944b4 (diff) | |
download | pangemma-bb557b6977c39514e53b5dc84c5bf589cb5eec84.tar.gz |
More testing
Diffstat (limited to 'src/param.cpp')
-rw-r--r-- | src/param.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/param.cpp b/src/param.cpp index 6cbeab7..68e9d63 100644 --- a/src/param.cpp +++ b/src/param.cpp @@ -1383,7 +1383,7 @@ 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; - // cerr << "* " << a1 << "," << b1 << "," << cols << ":" << index << endl; + cout << "* GetabIndx " << a1 << "," << b1 << "," << cols << ":" << index << endl; return index; // return ( b < a ? ((2 * n - b + 2) * (b - 1) / 2 + a - b ): ((2 * n - a + 2) * (a - 1) / 2 + b - a) ); |