瀏覽代碼

gmath lib: adjust G_percent()

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@51601 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Metz 13 年之前
父節點
當前提交
7869e1ed87
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lib/gmath/solvers_direct_cholesky_band.c

+ 1 - 1
lib/gmath/solvers_direct_cholesky_band.c

@@ -23,7 +23,7 @@ void G_math_cholesky_sband_decomposition(double **A, double **T, int rows, int b
     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));