[GRASS-SVN] r51601 - grass/trunk/lib/gmath
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue May 8 07:33:40 EDT 2012
Author: mmetz
Date: 2012-05-08 04:33:40 -0700 (Tue, 08 May 2012)
New Revision: 51601
Modified:
grass/trunk/lib/gmath/solvers_direct_cholesky_band.c
Log:
gmath lib: adjust G_percent()
Modified: grass/trunk/lib/gmath/solvers_direct_cholesky_band.c
===================================================================
--- grass/trunk/lib/gmath/solvers_direct_cholesky_band.c 2012-05-08 11:31:58 UTC (rev 51600)
+++ grass/trunk/lib/gmath/solvers_direct_cholesky_band.c 2012-05-08 11:33:40 UTC (rev 51601)
@@ -23,7 +23,7 @@
G_debug(2, "G_math_cholesky_sband_decomposition(): n=%d bandwidth=%d", rows, bandwidth);
for (i = 0; i < rows; i++) {
- G_percent(i, rows, 2);
+ G_percent(i, rows, 9);
/* For j = 0 */
sum = A[i][0];
end = ((bandwidth - 0) < (i + 1) ? (bandwidth - 0) : (i + 1));
More information about the grass-commit
mailing list