[GRASS-SVN] r56249 - in grass-addons: grass6/raster/r.fuzzy.system grass7/raster/r.fuzzy/r.fuzzy.system

svn_grass at osgeo.org svn_grass at osgeo.org
Tue May 14 06:27:58 PDT 2013


Author: jradinger
Date: 2013-05-14 06:27:57 -0700 (Tue, 14 May 2013)
New Revision: 56249

Modified:
   grass-addons/grass6/raster/r.fuzzy.system/local_proto.h
   grass-addons/grass7/raster/r.fuzzy/r.fuzzy.system/local_proto.h
Log:
Increased MAXSTACK (maximum number of possible tokens) in rules expression to 200

Modified: grass-addons/grass6/raster/r.fuzzy.system/local_proto.h
===================================================================
--- grass-addons/grass6/raster/r.fuzzy.system/local_proto.h	2013-05-14 12:20:20 UTC (rev 56248)
+++ grass-addons/grass6/raster/r.fuzzy.system/local_proto.h	2013-05-14 13:27:57 UTC (rev 56249)
@@ -17,7 +17,7 @@
 #define PI4 (atan(1))
 #endif
 
-#define STACKMAX 50
+#define STACKMAX 200
 #define VARMAX 31
 
 #define MAX(a,b) ((a) > (b) ? (a) : (b))

Modified: grass-addons/grass7/raster/r.fuzzy/r.fuzzy.system/local_proto.h
===================================================================
--- grass-addons/grass7/raster/r.fuzzy/r.fuzzy.system/local_proto.h	2013-05-14 12:20:20 UTC (rev 56248)
+++ grass-addons/grass7/raster/r.fuzzy/r.fuzzy.system/local_proto.h	2013-05-14 13:27:57 UTC (rev 56249)
@@ -18,7 +18,7 @@
 #define PI4 (atan(1))
 #endif
 
-#define STACKMAX 50
+#define STACKMAX 200
 #define VARMAX 31
 
 #define MAX(a,b) ((a) > (b) ? (a) : (b))



More information about the grass-commit mailing list