Skip to content
Snippets Groups Projects
Commit 84f8aa31 authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

Exprf: debug if cdoVerbose is set

parent 23349472
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@ CDO NEWS
Version 1.6.3 (18 February 2014):
New features:
* remapbil, remapbic: optimization for regular 2D source grids
* remapbil, remapbic, remapdis: performance optimization for regular 2D source grids
* gradsdes: added support for GRIB files >2GB
* eca_csu: added number of csu periods with more than 5days per time period
* eca_cfd: added number of cfd periods with more than 5days per time period
......
......@@ -135,7 +135,8 @@ void *Expr(void *argument)
parse_arg.vlistID1 = vlistID1;
parse_arg.vlistID2 = vlistID2;
parse_arg.nvars1 = 0;
parse_arg.debug = 1;
parse_arg.debug = 0;
if ( cdoVerbose ) parse_arg.debug = 1;
parse_arg.gridID2 = -1;
parse_arg.zaxisID2 = -1;
parse_arg.tsteptype2 = -1;
......
# bison version 2.4.2; flex version 2.5.35
# bison version 2.7; flex version 2.5.37
bison -y -o expr_yacc.c -d expr_yacc.y
flex -oexpr_lex.c expr_lex.l
......@@ -29,8 +29,8 @@ done
# result on bailung:
# =================
# bil bic nn con cons
# reg2d 1.0 1.8 2 223 227
# curv 36.9 37.9 843 227 316
# reg2d 0.7 1.6 1 223 227
# curv 36.9 37.9 843 227 305
#
# result on blizzard:
# ==================
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment