[GRASS-SVN] r50029 - grass/trunk/lib/gpde

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Jan 1 21:42:39 EST 2012


Author: huhabla
Date: 2012-01-01 18:42:39 -0800 (Sun, 01 Jan 2012)
New Revision: 50029

Modified:
   grass/trunk/lib/gpde/N_parse_options.c
Log:
Minor changes to default options


Modified: grass/trunk/lib/gpde/N_parse_options.c
===================================================================
--- grass/trunk/lib/gpde/N_parse_options.c	2012-01-01 19:17:23 UTC (rev 50028)
+++ grass/trunk/lib/gpde/N_parse_options.c	2012-01-02 02:42:39 UTC (rev 50029)
@@ -74,19 +74,19 @@
 	Opt->key = "maxit";
 	Opt->type = TYPE_INTEGER;
 	Opt->required = NO;
-	Opt->answer = "100000";
+	Opt->answer = "10000";
         Opt->guisection = "Solver";
 	Opt->description =
-	    ("Maximum number of iteration used to solver the linear equation system");
+	    ("Maximum number of iteration used to solve the linear equation system");
 	break;
     case N_OPT_ITERATION_ERROR:
 	Opt->key = "error";
 	Opt->type = TYPE_DOUBLE;
 	Opt->required = NO;
-	Opt->answer = "0.0000000001";
+	Opt->answer = "0.000001";
         Opt->guisection = "Solver";
 	Opt->description =
-	    ("Error break criteria for iterative solvers (jacobi, sor, cg or bicgstab)");
+	    ("Error break criteria for iterative solver");
 	break;
     case N_OPT_SOR_VALUE:
 	Opt->key = "relax";



More information about the grass-commit mailing list