Skip to content
Snippets Groups Projects
Gmsh.tab.cpp 251 KiB
Newer Older
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
/*  A Bison parser, made from Gmsh.y
    by GNU Bison version 1.28  */

#define YYBISON 1  /* Identify Bison output.  */

#define	tDOUBLE	257
#define	tSTRING	258
#define	tBIGSTR	259
#define	tEND	260
#define	tAFFECT	261
#define	tDOTS	262
#define	tPi	263
#define	tMPI_Rank	264
#define	tMPI_Size	265
#define	tExp	266
#define	tLog	267
#define	tLog10	268
#define	tSqrt	269
#define	tSin	270
#define	tAsin	271
#define	tCos	272
#define	tAcos	273
#define	tTan	274
#define	tRand	275
#define	tAtan	276
#define	tAtan2	277
#define	tSinh	278
#define	tCosh	279
#define	tTanh	280
#define	tFabs	281
#define	tFloor	282
#define	tCeil	283
#define	tFmod	284
#define	tModulo	285
#define	tHypot	286
#define	tPrintf	287
#define	tSprintf	288
#define	tStrCat	289
#define	tStrPrefix	290
#define	tStrRelative	291
#define	tBoundingBox	292
#define	tDraw	293
#define	tToday	294
#define	tPoint	295
#define	tCircle	296
#define	tEllipse	297
#define	tLine	298
#define	tSurface	299
#define	tSpline	300
#define	tVolume	301
#define	tCharacteristic	302
#define	tLength	303
#define	tParametric	304
#define	tElliptic	305
#define	tPlane	306
#define	tRuled	307
#define	tTransfinite	308
#define	tComplex	309
#define	tPhysical	310
#define	tUsing	311
#define	tBump	312
#define	tProgression	313
#define	tPlugin	314
#define	tRotate	315
#define	tTranslate	316
#define	tSymmetry	317
#define	tDilate	318
#define	tExtrude	319
#define	tDuplicata	320
#define	tLoop	321
#define	tRecombine	322
#define	tDelete	323
#define	tCoherence	324
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#define	tAttractor	325
#define	tLayers	326
#define	tAlias	327
#define	tAliasWithOptions	328
#define	tText2D	329
#define	tText3D	330
#define	tInterpolationScheme	331
#define	tTime	332
#define	tGrain	333
#define	tCombine	334
#define	tBSpline	335
#define	tBezier	336
#define	tNurbs	337
#define	tOrder	338
#define	tWith	339
#define	tBounds	340
#define	tKnots	341
#define	tColor	342
#define	tColorTable	343
#define	tFor	344
#define	tIn	345
#define	tEndFor	346
#define	tIf	347
#define	tEndIf	348
#define	tExit	349
#define	tReturn	350
#define	tCall	351
#define	tFunction	352
#define	tShow	353
#define	tHide	354
#define	tGetValue	355
#define	tGMSH_MAJOR_VERSION	356
#define	tGMSH_MINOR_VERSION	357
#define	tGMSH_PATCH_VERSION	358
#define	tAFFECTPLUS	359
#define	tAFFECTMINUS	360
#define	tAFFECTTIMES	361
#define	tAFFECTDIVIDE	362
#define	tOR	363
#define	tAND	364
#define	tEQUAL	365
#define	tNOTEQUAL	366
#define	tAPPROXEQUAL	367
#define	tLESSOREQUAL	368
#define	tGREATEROREQUAL	369
#define	tCROSSPRODUCT	370
#define	tPLUSPLUS	371
#define	tMINUSMINUS	372
#define	UNARYPREC	373
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

// $Id: Gmsh.tab.cpp,v 1.297 2007-01-20 14:06:37 geuzaine Exp $
Christophe Geuzaine's avatar
Christophe Geuzaine committed
// Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
// 
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
// Please report all bugs and problems to <gmsh@geuz.org>.
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#include <time.h>
#include "PluginManager.h"
#include "ParUtil.h"
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#include "GModel.h"
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#include "GeoInterpolation.h"
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#include "GeoUtils.h"
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#include "Generator.h"
Christophe Geuzaine's avatar
Christophe Geuzaine committed
#include "Options.h"
#include "OpenFile.h"
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#include "CommandLine.h"
#include "FunctionManager.h"
#include "ColorTable.h"
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#include "OS.h"
#include "CreateFile.h"
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
Tree_T *Symbol_T = NULL;
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

extern Context_T CTX;
extern Mesh *THEM;
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
extern GModel *GMODEL;
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

static ExtrudeParams extr;
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
static Post_View *View;
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
static List_T *ViewValueList;
static double ViewCoord[100];
static int *ViewNumList, ViewNumNodes, ViewNumComp, ViewNumListTmp;
static int ViewCoordIdx, ViewElementIdx;
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
static int ViewErrorFlags[VIEW_NB_ELEMENT_TYPES];
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#define MAX_RECUR_LOOPS 100
static int ImbricatedLoop = 0;
static fpos_t yyposImbricatedLoopsTab[MAX_RECUR_LOOPS];
static int yylinenoImbricatedLoopsTab[MAX_RECUR_LOOPS];
static double LoopControlVariablesTab[MAX_RECUR_LOOPS][3];
static char *LoopControlVariablesNameTab[MAX_RECUR_LOOPS];

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
void yyerror(char *s);
void yymsg(int type, char *fmt, ...);
void skip_until(char *skip, char *until);
int PrintListOfDouble(char *format, List_T *list, char *buffer);
int CheckViewErrorFlags(Post_View *v);
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#line 76 "Gmsh.y"
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
typedef union {
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
  char *c;
  int i;
  unsigned int u;
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
  double d;
  double v[5];
  Shape s;
  List_T *l;
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
} YYSTYPE;
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#include <stdio.h>
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#ifndef __cplusplus
#ifndef __STDC__
#define const
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#define	YYFINAL		1168
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#define	YYFLAG		-32768
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#define	YYNTBASE	140
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#define YYTRANSLATE(x) ((unsigned)(x) <= 373 ? yytranslate[x] : 206)
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

static const short yytranslate[] = {     0,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     2,     2,   125,     2,   135,     2,   123,     2,     2,   130,
   131,   121,   119,   136,   120,   134,   122,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,   115,
     2,   117,   109,     2,     2,     2,     2,     2,     2,     2,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
   132,     2,   133,   129,     2,     2,     2,     2,     2,     2,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     2,     2,   137,     2,   138,   139,     2,     2,     2,     2,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     1,     3,     4,     5,     6,
     7,     8,     9,    10,    11,    12,    13,    14,    15,    16,
    17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
    27,    28,    29,    30,    31,    32,    33,    34,    35,    36,
    37,    38,    39,    40,    41,    42,    43,    44,    45,    46,
    47,    48,    49,    50,    51,    52,    53,    54,    55,    56,
    57,    58,    59,    60,    61,    62,    63,    64,    65,    66,
    67,    68,    69,    70,    71,    72,    73,    74,    75,    76,
    77,    78,    79,    80,    81,    82,    83,    84,    85,    86,
    87,    88,    89,    90,    91,    92,    93,    94,    95,    96,
    97,    98,    99,   100,   101,   102,   103,   104,   105,   106,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
   107,   108,   110,   111,   112,   113,   114,   116,   118,   124,
   126,   127,   128
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
};
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#if YYDEBUG != 0
static const short yyprhs[] = {     0,
     0,     2,     5,     6,     9,    11,    13,    15,    17,    19,
    21,    23,    25,    27,    29,    31,    33,    35,    37,    39,
    41,    44,    50,    58,    66,    76,    83,    92,    93,    96,
    99,   102,   105,   108,   111,   113,   117,   119,   123,   124,
   125,   136,   138,   142,   143,   157,   159,   163,   164,   180,
   189,   190,   197,   204,   206,   208,   210,   212,   214,   216,
   218,   223,   231,   241,   248,   255,   259,   266,   273,   283,
   290,   300,   306,   315,   324,   336,   343,   353,   363,   373,
   375,   377,   385,   394,   407,   414,   422,   430,   438,   448,
   456,   466,   484,   492,   500,   512,   521,   534,   543,   552,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
   561,   570,   579,   588,   596,   605,   611,   623,   629,   639,
   641,   643,   645,   646,   649,   656,   663,   670,   677,   682,
   689,   696,   703,   708,   715,   719,   724,   730,   734,   738,
   743,   748,   752,   760,   768,   772,   780,   784,   787,   790,
   806,   809,   816,   825,   834,   845,   847,   850,   852,   856,
   861,   863,   869,   881,   895,   896,   904,   905,   919,   920,
   936,   945,   954,   963,   976,   989,  1002,  1017,  1032,  1047,
  1048,  1061,  1062,  1075,  1076,  1089,  1090,  1107,  1108,  1125,
  1126,  1143,  1144,  1163,  1164,  1183,  1184,  1203,  1205,  1208,
  1214,  1222,  1232,  1235,  1242,  1252,  1262,  1271,  1281,  1290,
  1299,  1306,  1311,  1318,  1325,  1332,  1339,  1342,  1344,  1348,
  1351,  1354,  1357,  1361,  1365,  1369,  1373,  1377,  1381,  1385,
  1389,  1393,  1397,  1401,  1405,  1409,  1413,  1419,  1424,  1429,
  1434,  1439,  1444,  1449,  1454,  1459,  1464,  1469,  1476,  1481,
  1486,  1491,  1496,  1501,  1506,  1513,  1520,  1527,  1532,  1537,
  1542,  1547,  1552,  1557,  1562,  1567,  1572,  1577,  1582,  1589,
  1594,  1599,  1604,  1609,  1614,  1619,  1626,  1633,  1640,  1645,
  1647,  1649,  1651,  1653,  1655,  1657,  1659,  1661,  1667,  1672,
  1677,  1680,  1686,  1690,  1697,  1702,  1710,  1717,  1719,  1722,
  1725,  1729,  1733,  1745,  1755,  1763,  1771,  1772,  1776,  1780,
  1782,  1786,  1788,  1790,  1793,  1797,  1802,  1806,  1812,  1817,
  1819,  1821,  1823,  1827,  1832,  1839,  1847,  1849,  1851,  1855,
  1859,  1869,  1877,  1879,  1885,  1889,  1896,  1898,  1902,  1904,
  1906,  1913,  1918,  1923,  1928,  1935,  1942
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
static const short yyrhs[] = {   141,
     0,     1,     6,     0,     0,   141,   142,     0,   145,     0,
   144,     0,   164,     0,   166,     0,   167,     0,   170,     0,
   171,     0,   172,     0,   173,     0,   176,     0,   191,     0,
   192,     0,   193,     0,   175,     0,   174,     0,   117,     0,
   117,   117,     0,    33,   130,     5,   131,     6,     0,    33,
   130,     5,   131,   143,   205,     6,     0,    33,   130,     5,
   136,   201,   131,     6,     0,    33,   130,     5,   136,   201,
   131,   143,   205,     6,     0,     4,     5,   137,   146,   138,
     6,     0,     4,     5,     4,   196,   137,   146,   138,     6,
     0,     0,   146,   149,     0,   146,   153,     0,   146,   156,
     0,   146,   158,     0,   146,   159,     0,   146,   161,     0,
   194,     0,   147,   136,   194,     0,   194,     0,   148,   136,
   194,     0,     0,     0,     4,   150,   130,   147,   131,   151,
   137,   148,   138,     6,     0,   205,     0,   152,   136,   205,
     0,     0,    75,   130,   194,   136,   194,   136,   194,   131,
   154,   137,   152,   138,     6,     0,   205,     0,   155,   136,
   205,     0,     0,    76,   130,   194,   136,   194,   136,   194,
   136,   194,   131,   157,   137,   155,   138,     6,     0,    77,
   137,   198,   138,   137,   198,   138,     6,     0,     0,    78,
   160,   137,   148,   138,     6,     0,    79,   130,   194,   131,
   199,     6,     0,     7,     0,   105,     0,   106,     0,   107,
     0,   108,     0,   126,     0,   127,     0,     4,   162,   194,
     6,     0,     4,   132,   194,   133,   162,   194,     6,     0,
     4,   132,   137,   201,   138,   133,   162,   199,     6,     0,
     4,   132,   133,     7,   199,     6,     0,     4,   132,   133,
   105,   199,     6,     0,     4,   163,     6,     0,     4,   132,
   194,   133,   163,     6,     0,     4,   134,     4,     7,   205,
     6,     0,     4,   132,   194,   133,   134,     4,     7,   205,
     6,     0,     4,   134,     4,   162,   194,     6,     0,     4,
   132,   194,   133,   134,     4,   162,   194,     6,     0,     4,
   134,     4,   163,     6,     0,     4,   132,   194,   133,   134,
     4,   163,     6,     0,     4,   134,    88,   134,     4,     7,
   202,     6,     0,     4,   132,   194,   133,   134,    88,   134,
     4,     7,   202,     6,     0,     4,   134,    89,     7,   203,
     6,     0,     4,   132,   194,   133,   134,    89,     7,   203,
     6,     0,    60,   130,     4,   131,   134,     4,     7,   194,
     6,     0,    60,   130,     4,   131,   134,     4,     7,   205,
     6,     0,   194,     0,   205,     0,    41,   130,   194,   131,
     7,   196,     6,     0,    56,    41,   130,   165,   131,     7,
   199,     6,     0,    71,    41,   199,     7,   137,   194,   136,
   194,   136,   194,   138,     6,     0,    48,    49,   199,     7,
   194,     6,     0,    44,   130,   194,   131,     7,   199,     6,
     0,    46,   130,   194,   131,     7,   199,     6,     0,    42,
   130,   194,   131,     7,   199,     6,     0,    42,   130,   194,
   131,     7,   199,    52,   196,     6,     0,    43,   130,   194,
   131,     7,   199,     6,     0,    43,   130,   194,   131,     7,
   199,    52,   196,     6,     0,    50,   130,   194,   131,     7,
   137,   194,   136,   194,   136,     5,   136,     5,   136,     5,
   138,     6,     0,    81,   130,   194,   131,     7,   199,     6,
     0,    82,   130,   194,   131,     7,   199,     6,     0,    83,
   130,   194,   131,     7,   199,    87,   199,    84,   194,     6,
     0,    44,    67,   130,   194,   131,     7,   199,     6,     0,
    71,    44,   199,     7,   137,   194,   136,   194,   136,   194,
   138,     6,     0,    56,    44,   130,   165,   131,     7,   199,
     6,     0,    52,    45,   130,   194,   131,     7,   199,     6,
     0,    53,    45,   130,   194,   131,     7,   199,     6,     0,
    45,    67,   130,   194,   131,     7,   199,     6,     0,    56,
    45,   130,   165,   131,     7,   199,     6,     0,    55,    47,
   130,   194,   131,     7,   199,     6,     0,    47,   130,   194,
   131,     7,   199,     6,     0,    56,    47,   130,   165,   131,
     7,   199,     6,     0,    62,   196,   137,   168,   138,     0,
    61,   137,   196,   136,   196,   136,   194,   138,   137,   168,
   138,     0,    63,   196,   137,   168,   138,     0,    64,   137,
   196,   136,   194,   138,   137,   168,   138,     0,   170,     0,
   169,     0,   167,     0,     0,   169,   166,     0,   169,    41,
   137,   201,   138,     6,     0,   169,    44,   137,   201,   138,
     6,     0,   169,    45,   137,   201,   138,     6,     0,   169,
    47,   137,   201,   138,     6,     0,    66,   137,   169,   138,
     0,    66,     4,   132,   194,   133,     6,     0,    73,     4,
   132,   194,   133,     6,     0,    74,     4,   132,   194,   133,
     6,     0,    69,   137,   169,   138,     0,    69,     4,   132,
   194,   133,     6,     0,    69,     4,     6,     0,    69,     4,
     4,     6,     0,    88,   202,   137,   169,   138,     0,    99,
   205,     6,     0,   100,   205,     6,     0,    99,   137,   169,
   138,     0,   100,   137,   169,   138,     0,     4,   205,     6,
     0,     4,     4,   132,   194,   133,   205,     6,     0,     4,
     4,     4,   132,   194,   133,     6,     0,     4,   194,     6,
     0,    60,   130,     4,   131,   134,     4,     6,     0,    80,
     4,     6,     0,    95,     6,     0,    38,     6,     0,    38,
   137,   194,   136,   194,   136,   194,   136,   194,   136,   194,
   136,   194,   138,     6,     0,    39,     6,     0,    90,   130,
   194,     8,   194,   131,     0,    90,   130,   194,     8,   194,
     8,   194,   131,     0,    90,     4,    91,   137,   194,     8,
   194,   138,     0,    90,     4,    91,   137,   194,     8,   194,
     8,   194,   138,     0,    92,     0,    98,     4,     0,    96,
     0,    97,     4,     6,     0,    93,   130,   194,   131,     0,
    94,     0,    65,   196,   137,   169,   138,     0,    65,   137,
   196,   136,   196,   136,   194,   138,   137,   169,   138,     0,
    65,   137,   196,   136,   196,   136,   196,   136,   194,   138,
   137,   169,   138,     0,     0,    65,   196,   137,   169,   177,
   189,   138,     0,     0,    65,   137,   196,   136,   196,   136,
   194,   138,   137,   169,   178,   189,   138,     0,     0,    65,
   137,   196,   136,   196,   136,   196,   136,   194,   138,   137,
   169,   179,   189,   138,     0,    65,    41,   137,   194,   136,
   196,   138,     6,     0,    65,    44,   137,   194,   136,   196,
   138,     6,     0,    65,    45,   137,   194,   136,   196,   138,
     6,     0,    65,    41,   137,   194,   136,   196,   136,   196,
   136,   194,   138,     6,     0,    65,    44,   137,   194,   136,
   196,   136,   196,   136,   194,   138,     6,     0,    65,    45,
   137,   194,   136,   196,   136,   196,   136,   194,   138,     6,
     0,    65,    41,   137,   194,   136,   196,   136,   196,   136,
   196,   136,   194,   138,     6,     0,    65,    44,   137,   194,
   136,   196,   136,   196,   136,   196,   136,   194,   138,     6,
     0,    65,    45,   137,   194,   136,   196,   136,   196,   136,
   196,   136,   194,   138,     6,     0,     0,    65,    41,   137,
   194,   136,   196,   138,   180,   137,   189,   138,     6,     0,
     0,    65,    44,   137,   194,   136,   196,   138,   181,   137,
   189,   138,     6,     0,     0,    65,    45,   137,   194,   136,
   196,   138,   182,   137,   189,   138,     6,     0,     0,    65,
    41,   137,   194,   136,   196,   136,   196,   136,   194,   138,
   183,   137,   189,   138,     6,     0,     0,    65,    44,   137,
   194,   136,   196,   136,   196,   136,   194,   138,   184,   137,
   189,   138,     6,     0,     0,    65,    45,   137,   194,   136,
   196,   136,   196,   136,   194,   138,   185,   137,   189,   138,
     6,     0,     0,    65,    41,   137,   194,   136,   196,   136,
   196,   136,   196,   136,   194,   138,   186,   137,   189,   138,
     6,     0,     0,    65,    44,   137,   194,   136,   196,   136,
   196,   136,   196,   136,   194,   138,   187,   137,   189,   138,
     6,     0,     0,    65,    45,   137,   194,   136,   196,   136,
   196,   136,   196,   136,   194,   138,   188,   137,   189,   138,
     6,     0,   190,     0,   189,   190,     0,    72,   137,   194,
   138,     6,     0,    72,   137,   199,   136,   199,   138,     6,
     0,    72,   137,   199,   136,   199,   136,   199,   138,     6,
     0,    68,     6,     0,    54,    44,   199,     7,   194,     6,
     0,    54,    44,   199,     7,   194,    57,    59,   194,     6,
     0,    54,    44,   199,     7,   194,    57,    58,   194,     6,
     0,    54,    45,   137,   194,   138,     7,   199,     6,     0,
    54,    45,   137,   194,   138,     7,   199,     4,     6,     0,
    51,    45,   137,   194,   138,     7,   199,     6,     0,    54,
    47,   137,   194,   138,     7,   199,     6,     0,    68,    45,
   199,     7,   194,     6,     0,    68,    45,   199,     6,     0,
    41,   199,    91,    45,   194,     6,     0,    44,   199,    91,
    45,   194,     6,     0,    44,   199,    91,    47,   194,     6,
     0,    45,   199,    91,    47,   194,     6,     0,    70,     6,
     0,   195,     0,   130,   194,   131,     0,   120,   194,     0,
   119,   194,     0,   125,   194,     0,   194,   120,   194,     0,
   194,   119,   194,     0,   194,   121,   194,     0,   194,   122,
   194,     0,   194,   123,   194,     0,   194,   129,   194,     0,
   194,   115,   194,     0,   194,   117,   194,     0,   194,   116,
   194,     0,   194,   118,   194,     0,   194,   112,   194,     0,
   194,   113,   194,     0,   194,   111,   194,     0,   194,   110,
   194,     0,   194,   109,   194,     8,   194,     0,    12,   130,
   194,   131,     0,    13,   130,   194,   131,     0,    14,   130,
   194,   131,     0,    15,   130,   194,   131,     0,    16,   130,
   194,   131,     0,    17,   130,   194,   131,     0,    18,   130,
   194,   131,     0,    19,   130,   194,   131,     0,    20,   130,
   194,   131,     0,    22,   130,   194,   131,     0,    23,   130,
   194,   136,   194,   131,     0,    24,   130,   194,   131,     0,
    25,   130,   194,   131,     0,    26,   130,   194,   131,     0,
    27,   130,   194,   131,     0,    28,   130,   194,   131,     0,
    29,   130,   194,   131,     0,    30,   130,   194,   136,   194,
   131,     0,    31,   130,   194,   136,   194,   131,     0,    32,
   130,   194,   136,   194,   131,     0,    21,   130,   194,   131,
     0,    12,   132,   194,   133,     0,    13,   132,   194,   133,
     0,    14,   132,   194,   133,     0,    15,   132,   194,   133,
     0,    16,   132,   194,   133,     0,    17,   132,   194,   133,
     0,    18,   132,   194,   133,     0,    19,   132,   194,   133,
     0,    20,   132,   194,   133,     0,    22,   132,   194,   133,
     0,    23,   132,   194,   136,   194,   133,     0,    24,   132,
   194,   133,     0,    25,   132,   194,   133,     0,    26,   132,
   194,   133,     0,    27,   132,   194,   133,     0,    28,   132,
   194,   133,     0,    29,   132,   194,   133,     0,    30,   132,
   194,   136,   194,   133,     0,    31,   132,   194,   136,   194,
   133,     0,    32,   132,   194,   136,   194,   133,     0,    21,
   132,   194,   133,     0,     3,     0,     9,     0,    10,     0,
    11,     0,   102,     0,   103,     0,   104,     0,     4,     0,
     4,   139,   137,   194,   138,     0,     4,   132,   194,   133,
     0,   135,     4,   132,   133,     0,     4,   163,     0,     4,
   132,   194,   133,   163,     0,     4,   134,     4,     0,     4,
   132,   194,   133,   134,     4,     0,     4,   134,     4,   163,
     0,     4,   132,   194,   133,   134,     4,   163,     0,   101,
   130,     5,   136,   194,   131,     0,   197,     0,   120,   196,
     0,   119,   196,     0,   196,   120,   196,     0,   196,   119,
   196,     0,   137,   194,   136,   194,   136,   194,   136,   194,
   136,   194,   138,     0,   137,   194,   136,   194,   136,   194,
   136,   194,   138,     0,   137,   194,   136,   194,   136,   194,
   138,     0,   130,   194,   136,   194,   136,   194,   131,     0,
     0,   137,   198,   138,     0,   130,   198,   131,     0,   199,
     0,   198,   136,   199,     0,   194,     0,   200,     0,   137,
   138,     0,   137,   201,   138,     0,   120,   137,   201,   138,
     0,   194,     8,   194,     0,   194,     8,   194,     8,   194,
     0,    41,   137,   194,   138,     0,   167,     0,   170,     0,
   176,     0,     4,   132,   133,     0,   120,     4,   132,   133,
     0,     4,   132,   137,   201,   138,   133,     0,   120,     4,
   132,   137,   201,   138,   133,     0,   194,     0,   200,     0,
   201,   136,   194,     0,   201,   136,   200,     0,   137,   194,
   136,   194,   136,   194,   136,   194,   138,     0,   137,   194,
   136,   194,   136,   194,   138,     0,     4,     0,     4,   134,
    88,   134,     4,     0,   137,   204,   138,     0,     4,   132,
   194,   133,   134,    89,     0,   202,     0,   204,   136,   202,
     0,     5,     0,    40,     0,    35,   130,   205,   136,   205,
   131,     0,    36,   130,   205,   131,     0,    37,   130,   205,
   131,     0,    34,   130,   205,   131,     0,    34,   130,   205,
   136,   201,   131,     0,    34,   130,     4,   134,     4,   131,
     0,    34,   130,     4,   132,   194,   133,   134,     4,   131,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#if YYDEBUG != 0
static const short yyrline[] = { 0,
   141,   143,   148,   150,   153,   155,   156,   157,   158,   159,
   160,   161,   162,   163,   164,   165,   166,   167,   168,   171,
   176,   182,   188,   203,   216,   244,   252,   261,   269,   270,
   271,   272,   273,   274,   277,   280,   284,   287,   291,   482,
   500,   510,   516,   523,   531,   537,   543,   550,   558,   564,
   572,   577,   581,   590,   592,   593,   594,   595,   598,   600,
   603,   638,   677,   731,   748,   766,   777,   796,   810,   827,
   853,   880,   894,   911,   925,   942,   962,   985,   995,  1009,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
  1014,  1021,  1043,  1059,  1066,  1088,  1106,  1124,  1142,  1168,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
  1186,  1212,  1232,  1256,  1280,  1306,  1323,  1330,  1349,  1367,
  1405,  1421,  1441,  1458,  1475,  1495,  1501,  1506,  1511,  1518,
  1520,  1521,  1524,  1529,  1533,  1549,  1565,  1581,  1601,  1616,
  1622,  1628,  1639,  1649,  1659,  1674,  1692,  1706,  1713,  1719,
  1728,  1741,  1787,  1802,  1813,  1833,  1843,  1865,  1869,  1874,
  1879,  1889,  1906,  1922,  1948,  1975,  2007,  2014,  2019,  2025,
  2029,  2037,  2046,  2054,  2062,  2067,  2075,  2080,  2088,  2093,
  2103,  2110,  2117,  2124,  2131,  2138,  2145,  2152,  2159,  2166,
  2171,  2178,  2183,  2190,  2195,  2202,  2207,  2214,  2219,  2226,
  2231,  2238,  2243,  2250,  2255,  2262,  2267,  2277,  2281,  2286,
  2296,  2318,  2342,  2350,  2369,  2387,  2405,  2434,  2469,  2474,
  2501,  2515,  2533,  2540,  2546,  2549,  2557,  2567,  2569,  2570,
  2571,  2572,  2573,  2574,  2575,  2576,  2583,  2584,  2585,  2586,
  2587,  2588,  2589,  2590,  2591,  2592,  2593,  2594,  2595,  2596,
  2597,  2598,  2599,  2600,  2601,  2602,  2603,  2604,  2605,  2606,
  2607,  2608,  2609,  2610,  2611,  2612,  2613,  2614,  2616,  2617,
  2618,  2619,  2620,  2621,  2622,  2623,  2624,  2625,  2626,  2627,
  2628,  2629,  2630,  2631,  2632,  2633,  2634,  2635,  2636,  2641,
  2646,  2647,  2648,  2649,  2650,  2651,  2655,  2671,  2686,  2706,
  2720,  2733,  2756,  2774,  2792,  2810,  2828,  2835,  2840,  2844,
  2848,  2852,  2858,  2863,  2867,  2871,  2877,  2881,  2885,  2891,
  2897,  2904,  2910,  2914,  2919,  2923,  2934,  2941,  2952,  2972,
  2982,  2992,  3002,  3019,  3038,  3062,  3090,  3096,  3100,  3104,
  3116,  3121,  3133,  3140,  3161,  3166,  3180,  3186,  3192,  3197,
  3205,  3213,  3227,  3241,  3245,  3264,  3286
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#endif
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

#if YYDEBUG != 0 || defined (YYERROR_VERBOSE)

static const char * const yytname[] = {   "$","error","$undefined.","tDOUBLE",
"tSTRING","tBIGSTR","tEND","tAFFECT","tDOTS","tPi","tMPI_Rank","tMPI_Size","tExp",
"tLog","tLog10","tSqrt","tSin","tAsin","tCos","tAcos","tTan","tRand","tAtan",
"tAtan2","tSinh","tCosh","tTanh","tFabs","tFloor","tCeil","tFmod","tModulo",
"tHypot","tPrintf","tSprintf","tStrCat","tStrPrefix","tStrRelative","tBoundingBox",
"tDraw","tToday","tPoint","tCircle","tEllipse","tLine","tSurface","tSpline",
"tVolume","tCharacteristic","tLength","tParametric","tElliptic","tPlane","tRuled",
"tTransfinite","tComplex","tPhysical","tUsing","tBump","tProgression","tPlugin",
"tRotate","tTranslate","tSymmetry","tDilate","tExtrude","tDuplicata","tLoop",
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
"tRecombine","tDelete","tCoherence","tAttractor","tLayers","tAlias","tAliasWithOptions",
"tText2D","tText3D","tInterpolationScheme","tTime","tGrain","tCombine","tBSpline",
"tBezier","tNurbs","tOrder","tWith","tBounds","tKnots","tColor","tColorTable",
"tFor","tIn","tEndFor","tIf","tEndIf","tExit","tReturn","tCall","tFunction",
"tShow","tHide","tGetValue","tGMSH_MAJOR_VERSION","tGMSH_MINOR_VERSION","tGMSH_PATCH_VERSION",
"tAFFECTPLUS","tAFFECTMINUS","tAFFECTTIMES","tAFFECTDIVIDE","'?'","tOR","tAND",
"tEQUAL","tNOTEQUAL","tAPPROXEQUAL","'<'","tLESSOREQUAL","'>'","tGREATEROREQUAL",
"'+'","'-'","'*'","'/'","'%'","tCROSSPRODUCT","'!'","tPLUSPLUS","tMINUSMINUS",
"UNARYPREC","'^'","'('","')'","'['","']'","'.'","'#'","','","'{'","'}'","'~'",
"All","GeoFormatItems","GeoFormatItem","SendToFile","Printf","View","Views",
"ElementCoords","ElementValues","Element","@1","@2","Text2DValues","Text2D",
"@3","Text3DValues","Text3D","@4","InterpolationMatrix","Time","@5","Grain",
"NumericAffectation","NumericIncrement","Affectation","PhysicalId","Shape","Transform",
"MultipleShape","ListOfShapes","Duplicata","Delete","Colorify","Visibility",
"Command","Loop","Extrude","@6","@7","@8","@9","@10","@11","@12","@13","@14",
"@15","@16","@17","ExtrudeParameters","ExtrudeParameter","Transfinite","Embedding",
"Coherence","FExpr","FExpr_Single","VExpr","VExpr_Single","RecursiveListOfListOfDouble",
"ListOfDouble","FExpr_Multi","RecursiveListOfDouble","ColorExpr","ListOfColor",
"RecursiveListOfColor","StringExpr", NULL
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
};
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#endif
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
static const short yyr1[] = {     0,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
   140,   140,   141,   141,   142,   142,   142,   142,   142,   142,
   142,   142,   142,   142,   142,   142,   142,   142,   142,   143,
   143,   144,   144,   144,   144,   145,   145,   146,   146,   146,
   146,   146,   146,   146,   147,   147,   148,   148,   150,   151,
   149,   152,   152,   154,   153,   155,   155,   157,   156,   158,
   160,   159,   161,   162,   162,   162,   162,   162,   163,   163,
   164,   164,   164,   164,   164,   164,   164,   164,   164,   164,
   164,   164,   164,   164,   164,   164,   164,   164,   164,   165,
   165,   166,   166,   166,   166,   166,   166,   166,   166,   166,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
   166,   166,   166,   166,   166,   166,   166,   166,   166,   166,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
   166,   166,   166,   166,   166,   167,   167,   167,   167,   168,
   168,   168,   169,   169,   169,   169,   169,   169,   170,   170,
   170,   170,   171,   171,   171,   171,   172,   173,   173,   173,
   173,   174,   174,   174,   174,   174,   174,   174,   174,   174,
   174,   175,   175,   175,   175,   175,   175,   175,   175,   175,
   175,   176,   176,   176,   177,   176,   178,   176,   179,   176,
   176,   176,   176,   176,   176,   176,   176,   176,   176,   180,
   176,   181,   176,   182,   176,   183,   176,   184,   176,   185,
   176,   186,   176,   187,   176,   188,   176,   189,   189,   190,
   190,   190,   190,   191,   191,   191,   191,   191,   191,   191,
   191,   191,   192,   192,   192,   192,   193,   194,   194,   194,
   194,   194,   194,   194,   194,   194,   194,   194,   194,   194,
   194,   194,   194,   194,   194,   194,   194,   194,   194,   194,
   194,   194,   194,   194,   194,   194,   194,   194,   194,   194,
   194,   194,   194,   194,   194,   194,   194,   194,   194,   194,
   194,   194,   194,   194,   194,   194,   194,   194,   194,   194,
   194,   194,   194,   194,   194,   194,   194,   194,   194,   195,
   195,   195,   195,   195,   195,   195,   195,   195,   195,   195,
   195,   195,   195,   195,   195,   195,   195,   196,   196,   196,
   196,   196,   197,   197,   197,   197,    -1,    -1,    -1,   198,
   198,   199,   199,   199,   199,   199,   200,   200,   200,   200,
   200,   200,   200,   200,   200,   200,   201,   201,   201,   201,
   202,   202,   202,   202,   203,   203,   204,   204,   205,   205,
   205,   205,   205,   205,   205,   205,   205
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
static const short yyr2[] = {     0,
     1,     2,     0,     2,     1,     1,     1,     1,     1,     1,
     1,     1,     1,     1,     1,     1,     1,     1,     1,     1,
     2,     5,     7,     7,     9,     6,     8,     0,     2,     2,
     2,     2,     2,     2,     1,     3,     1,     3,     0,     0,
    10,     1,     3,     0,    13,     1,     3,     0,    15,     8,
     0,     6,     6,     1,     1,     1,     1,     1,     1,     1,
     4,     7,     9,     6,     6,     3,     6,     6,     9,     6,
     9,     5,     8,     8,    11,     6,     9,     9,     9,     1,
     1,     7,     8,    12,     6,     7,     7,     7,     9,     7,
     9,    17,     7,     7,    11,     8,    12,     8,     8,     8,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     8,     8,     8,     7,     8,     5,    11,     5,     9,     1,
     1,     1,     0,     2,     6,     6,     6,     6,     4,     6,
     6,     6,     4,     6,     3,     4,     5,     3,     3,     4,
     4,     3,     7,     7,     3,     7,     3,     2,     2,    15,
     2,     6,     8,     8,    10,     1,     2,     1,     3,     4,
     1,     5,    11,    13,     0,     7,     0,    13,     0,    15,
     8,     8,     8,    12,    12,    12,    14,    14,    14,     0,
    12,     0,    12,     0,    12,     0,    16,     0,    16,     0,
    16,     0,    18,     0,    18,     0,    18,     1,     2,     5,
     7,     9,     2,     6,     9,     9,     8,     9,     8,     8,
     6,     4,     6,     6,     6,     6,     2,     1,     3,     2,
     2,     2,     3,     3,     3,     3,     3,     3,     3,     3,
     3,     3,     3,     3,     3,     3,     5,     4,     4,     4,
     4,     4,     4,     4,     4,     4,     4,     6,     4,     4,
     4,     4,     4,     4,     6,     6,     6,     4,     4,     4,
     4,     4,     4,     4,     4,     4,     4,     4,     6,     4,
     4,     4,     4,     4,     4,     6,     6,     6,     4,     1,
     1,     1,     1,     1,     1,     1,     1,     5,     4,     4,
     2,     5,     3,     6,     4,     7,     6,     1,     2,     2,
     3,     3,    11,     9,     7,     7,     0,     3,     3,     1,
     3,     1,     1,     2,     3,     4,     3,     5,     4,     1,
     1,     1,     3,     4,     6,     7,     1,     1,     3,     3,
     9,     7,     1,     5,     3,     6,     1,     3,     1,     1,
     6,     4,     4,     4,     6,     6,     9
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
static const short yydefact[] = {     0,
     0,     1,     2,     0,     0,     0,     0,     0,     0,     0,
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0,   146,     0,   151,     0,   148,     0,     0,     0,     0,
     4,     6,     5,     7,     8,     9,    10,    11,    12,    13,
    19,    18,    14,    15,    16,    17,   270,   277,   329,    54,
   271,   272,   273,     0,     0,     0,     0,     0,     0,     0,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0,     0,     0,     0,     0,     0,     0,     0,   330,     0,
   274,   275,   276,    55,    56,    57,    58,     0,     0,     0,
    59,    60,     0,     0,     0,     0,     0,     0,     0,   208,
     0,     0,   139,     0,   141,   277,     0,     0,     0,     0,
   310,   311,   312,   302,     0,   303,     0,     0,     0,     0,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0,     0,     0,     0,     0,   288,     0,     0,     0,     0,
     0,     0,     0,     0,   113,     0,     0,   113,   207,     0,
     0,     0,     0,     0,     0,     0,     0,   323,     0,     0,
     0,     0,     0,   138,     0,   147,   329,   113,     0,   113,
     0,     0,     0,     0,     0,   281,     0,    28,     0,     0,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0,     0,     0,     0,     0,   277,   211,   210,   212,     0,
     0,     0,     0,     0,     0,     0,     0,     0,    66,   135,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0,     0,     0,     0,     0,   132,     0,     0,     0,     0,
   277,     0,     0,     0,   304,   317,   318,     0,     0,     0,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0,     0,     0,     0,   290,   289,     0,     0,     0,     0,
   113,   113,     0,     0,     0,     0,     0,     0,     0,     0,
   113,     0,     0,     0,     0,   125,     0,     0,     0,     0,
     0,     0,   137,     0,     0,     0,     0,     0,   113,     0,
     0,     0,   149,     0,   128,     0,   129,     0,     0,   283,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0,     0,   209,     0,     0,     0,     0,    54,     0,     0,
     0,     0,     0,    61,     0,   226,   225,   223,   224,   219,
   221,   220,   222,   214,   213,   215,   216,   217,   218,     0,
     0,     0,   313,     0,     0,     0,     0,     0,   209,     0,
   305,   307,     0,     0,     0,     0,   209,     0,     0,     0,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0,     0,     0,    80,    81,     0,     0,     0,     0,     0,
     0,     0,   292,   291,   112,     0,   111,   110,     0,     0,
     0,     0,     0,     0,     0,   155,     0,     0,     0,     0,
     0,   119,   114,   202,     0,   126,     0,   123,     0,     0,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
   150,   130,   131,     0,   279,   285,     0,    28,    39,     0,
     0,     0,    51,     0,     0,    29,    30,    31,    32,    33,
    34,   228,   249,   229,   250,   230,   251,   231,   252,   232,
   253,   233,   254,   234,   255,   235,   256,   236,   257,   248,
   269,   237,   258,     0,     0,   239,   260,   240,   261,   241,
   262,   242,   263,   243,   264,   244,   265,     0,     0,     0,
     0,     0,     0,     0,     0,   334,     0,     0,   332,   333,
     0,     0,     0,     0,     0,     0,     0,     0,     0,    72,
     0,     0,     0,     0,   280,     0,    22,    20,     0,     0,
     0,     0,   279,   309,   314,     0,   306,     0,   319,   320,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0,     0,     0,     0,     0,     0,     0,     0,     0,   106,
   108,     0,     0,     0,     0,     0,   152,     0,     0,     0,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0,     0,     0,     0,     0,     0,   127,     0,     0,     0,
     0,   282,     0,   278,     0,     0,     0,     0,     0,     0,
     0,    26,     0,     0,     0,     0,     0,     0,     0,     0,
     0,     0,     0,     0,     0,    64,    65,     0,     0,     0,
     0,     0,    67,    68,    70,     0,     0,   327,     0,    76,
   227,    21,     0,     0,     0,     0,     0,     0,   308,   203,
     0,     0,     0,     0,   204,   205,     0,   206,     0,     0,
    85,     0,     0,     0,     0,   194,     0,     0,     0,     0,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0,     0,     0,     0,     0,     0,   188,   120,     0,     0,
     0,     0,     0,     0,   201,   124,     0,     0,   121,   122,
     0,     0,     0,   324,     0,     0,     0,   142,   134,   284,
   133,     0,     0,     0,     0,     0,   300,     0,     0,   238,
   259,   245,   266,   246,   267,   247,   268,     0,   336,   335,
   331,   287,     0,    54,     0,     0,     0,     0,    62,     0,
     0,     0,   325,    23,    24,     0,     0,   315,     0,    82,
    88,     0,    90,     0,     0,    86,     0,    87,   104,     0,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0,     0,   136,     0,     0,     0,     0,   113,     0,   170,
     0,   172,     0,   174,     0,     0,   193,     0,   156,   189,
     0,     0,     0,     0,     0,     0,     0,     0,    93,    94,
     0,     0,     0,     0,   286,    27,     0,    35,     0,     0,
     0,     0,     0,    37,     0,     0,     0,     0,     0,    73,
     0,     0,    74,     0,   328,     0,     0,   316,     0,     0,
    96,   101,     0,   199,    99,   100,     0,     0,     0,   197,
   200,   103,    83,    98,   102,   105,     0,     0,     0,   296,
     0,   295,     0,     0,   161,     0,     0,   162,     0,     0,
   163,     0,     0,     0,   302,     0,   115,   116,   117,   118,
     0,     0,     0,     0,   322,     0,   144,   143,    40,     0,
     0,     0,   301,     0,     0,     0,     0,     0,    63,    69,
    71,     0,    77,     0,    25,     0,    89,    91,     0,   196,
   195,   198,    78,    79,   113,     0,   109,     0,     0,     0,
     0,     0,     0,   113,     0,     0,     0,     0,     0,     0,
     0,     0,     0,    36,     0,     0,     0,    38,    52,    53,
   337,     0,   326,     0,     0,     0,     0,   294,     0,     0,
     0,     0,     0,     0,     0,     0,     0,   157,     0,   190,
     0,     0,     0,     0,   321,   145,     0,     0,     0,     0,
    75,     0,     0,   107,     0,   176,     0,     0,   178,     0,
     0,   180,     0,     0,   153,     0,   113,     0,     0,     0,
     0,    95,     0,    44,     0,    50,     0,     0,   293,   164,
     0,     0,   171,   165,     0,     0,   173,   166,     0,     0,
   175,     0,   159,     0,   191,    84,    97,     0,     0,     0,
     0,     0,     0,   182,     0,   184,     0,   186,   158,   154,
     0,     0,    41,     0,    48,     0,     0,     0,   167,     0,
     0,   168,     0,     0,   169,     0,     0,   192,     0,    42,
     0,   140,     0,     0,     0,     0,     0,     0,     0,   160,
     0,     0,     0,     0,   177,     0,   179,     0,   181,     0,
    43,    45,     0,    46,    92,     0,     0,     0,     0,     0,
   183,   185,   187,    47,    49,     0,     0,     0
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
static const short yydefgoto[] = {  1166,
     2,    51,   619,    52,    53,   373,   897,   903,   546,   696,
  1013,  1129,   547,  1099,  1153,   548,  1131,   549,   550,   700,
   551,   117,   206,    54,   483,   513,   131,   496,   497,   132,
    58,    59,    60,    61,    62,   133,   668,  1066,  1111,   946,
   949,   952,  1081,  1085,  1089,  1120,  1123,  1126,   776,   777,
    64,    65,    66,   134,   120,   325,   166,   806,   807,   136,
   298,   190,   614,   729,   485
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
static const short yypact[] = {  2724,
    27,  3035,-32768,  2115,  -112,     8,    63,  1556,  -106,   -41,
  1298,  1427,   -15,    -7,    82,    33,   103,   125,   132,   540,
   153,   397,    73,    89,    72,    72,   100,   326,    12,   165,
    13,   239,    26,   298,   305,   341,   218,   221,   228,    17,
    39,-32768,   245,-32768,   362,-32768,   409,   417,    22,    60,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
-32768,-32768,-32768,-32768,-32768,-32768,-32768,     0,    18,-32768,
-32768,-32768,-32768,   -77,   204,   259,   275,   432,   436,   450,
   484,   494,   498,   511,   553,   554,   615,   616,   639,   642,
   653,   654,   662,   672,   256,   317,   318,   323,-32768,   324,
-32768,-32768,-32768,-32768,-32768,-32768,-32768,  2326,  2326,  2326,
-32768,-32768,  2326,  1751,    40,   457,  2326,   477,   836,-32768,
   478,   485,-32768,  2326,-32768,   449,   356,   678,  2326,  1162,
-32768,-32768,-32768,  2454,   407,-32768,  2326,  2326,   383,  2326,
   430,   399,   437,  2326,  2326,  1685,  2326,   411,   406,   426,
  1685,   420,   468,   456,   517,   518,   527,   537,   650,    72,
    72,    72,  2326,  2326,    79,-32768,   114,    72,   538,   539,
   543,  1986,   176,   532,-32768,  1685,    32,-32768,-32768,  1685,
  1685,   579,   580,   665,  2326,  2326,  2326,   585,  2326,   583,
   637,  2326,  2326,-32768,   732,-32768,-32768,-32768,   736,-32768,
   744,   607,  2326,   747,   621,-32768,    72,-32768,  2326,  2326,
  2326,  2326,  2326,  2326,  2326,  2326,  2326,  2326,  2326,  2326,
  2326,  2326,  2326,  2326,  2326,  2326,  2326,  2326,  2326,  2326,
  2326,  2326,  2326,  2326,  2326,  2326,  2326,  2326,  2326,  2326,
  2326,  2326,  2326,  2326,  2326,  2326,  2326,  2326,  2326,  2326,
   505,   415,   415,   415,   763,   524,   647,   647,   647,  5017,
    16,  2163,  1089,   112,   643,   789,   667,   858,-32768,-32768,
  2326,  2326,  2326,  2326,  2326,  2326,  2326,  2326,  2326,  2326,
  2326,  2326,  2326,  2326,  2326,-32768,   -65,  3591,  1814,  2326,
   534,  2163,  5040,  2356,-32768,  2454,-32768,   487,  2326,   761,
  5063,  5086,  2326,  5109,   625,  2326,   771,  5132,  5155,   814,
  5178,  2326,  2326,  2326,   821,  2326,  2326,  2326,  2291,  2291,
  2291,  2291,   706,   104,-32768,-32768,  3613,  3635,    72,    72,
   727,   727,   372,  2326,  2326,  2326,  1986,  1986,  2326,   396,
-32768,  2326,  2784,   207,   838,-32768,  2326,  2801,   855,   859,
  2326,  2326,-32768,  5201,  5224,  5247,   777,  3657,-32768,   740,
  2469,  5270,-32768,  2844,-32768,  2861,-32768,  2326,  1483,   214,
  2326,   192,     3,  5293,  1612,  5316,  4317,  5339,  4342,  5362,
  4367,  5385,  4392,  5408,  4417,  5431,  4442,  5454,  4467,  5477,
  4492,  5500,  4517,  5523,  4542,  3679,  3701,  5546,  4567,  5569,
  4592,  5592,  4617,  5615,  4642,  5638,  4667,  5661,  4692,  3723,
  3745,  3767,  3789,  3811,  3833,   673,   -23,   737,   748,   749,
   742,  2326,-32768,  1685,  1685,   676,   291,   415,  2326,   875,
   878,    21,   751,-32768,  2544,   797,  1357,   773,   773,   404,
   404,   404,   404,   178,   178,   647,   647,   647,   647,    20,
  2163,  2326,-32768,  2163,  4717,  3087,  1949,   681,   879,  2163,
-32768,  2585,  2326,   892,   893,  5684,   894,  2326,  2326,  5707,
  2326,   896,   898,  2326,   899,  3111,  5730,  5753,  2326,  3135,
  3159,  5776,   780,  2570,-32768,   791,   792,   793,   794,    72,
  2326,  2326,-32768,-32768,-32768,   787,  2559,-32768,   795,  2326,
  3855,  3877,  3899,  2516,    72,  2904,  4742,   -69,   -47,   -26,
   -31,-32768,-32768,-32768,  2326,-32768,  4767,-32768,   790,   798,
  4792,  4817,   922,   925,   927,   802,  2326,  2921,  2326,  2326,
-32768,-32768,-32768,  4842,    67,-32768,  3183,-32768,-32768,   807,
   808,   803,-32768,   809,   935,-32768,-32768,-32768,-32768,-32768,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
-32768,-32768,-32768,  2326,  2326,-32768,-32768,-32768,-32768,-32768,
-32768,-32768,-32768,-32768,-32768,-32768,-32768,  2326,  2326,  2326,
  2326,  2326,  2326,  2326,   940,-32768,  2163,   415,-32768,-32768,
  2326,   944,   955,   829,    47,  2326,   957,   958,   976,-32768,
   965,   851,    17,   979,-32768,  2326,-32768,   869,   415,   -14,
  3921,   688,    78,-32768,-32768,  2163,-32768,    72,  2454,-32768,
  2326,  1013,  1685,  1685,   981,  1685,  1132,  1225,   982,  1264,
  1685,  1685,  1397,   853,   984,   985,   986,   480,   988,   989,
   991,   992,   993,   994,   996,  1000,   427,  3943,  3965,-32768,
-32768,  3207,    72,    72,    72,   431,-32768,   117,   999,  2326,
  2163,  2326,  2163,  2163,  2163,  1526,  1002,  2326,  2326,  1004,
  1005,  1685,  1685,  1685,  1011,  3987,-32768,  2600,   644,  1014,
  1017,-32768,  1016,-32768,     9,   876,  2326,  2326,  1685,   880,
  2326,-32768,  5799,  4867,  5822,  4892,  5845,  4917,  5868,  4942,
  4967,   895,     2,   897,  5891,-32768,-32768,   136,   296,   889,
  1018,  1784,-32768,-32768,-32768,    17,  2326,-32768,   689,-32768,
  2570,-32768,  1021,    23,  2326,   891,   693,     5,  2570,-32768,
    24,    25,  1685,  1023,-32768,-32768,  1685,-32768,  1024,  1027,
-32768,  2326,  1685,  1685,  1685,-32768,   368,  1685,  1685,  1685,
  1685,  1685,  1685,  1685,   429,  2326,  2326,  2326,   900,   -45,
   369,   382,  1986,  1029,   901,   -40,-32768,-32768,  5914,   697,
  5937,   698,   707,   711,-32768,-32768,  4009,  4031,-32768,-32768,
  1030,  1036,   959,-32768,  2326,  2326,  2326,-32768,-32768,   214,
-32768,  1038,  2326,  4053,  4075,   712,-32768,  2326,  5960,-32768,
-32768,-32768,-32768,-32768,-32768,-32768,-32768,   913,-32768,-32768,
-32768,-32768,  1685,   415,  2326,  1042,  1045,    21,-32768,  1044,
  4992,    17,-32768,-32768,-32768,   415,  4097,-32768,   921,-32768,
-32768,    72,-32768,    72,  1049,-32768,  1050,-32768,-32768,  4119,
  1051,  1054,  1055,  2326,  2326,   848,  1056,  1057,  1058,  1059,
  1060,  1062,-32768,  2291,  3231,  5983,  2622,   727,    72,  1063,
    72,  1065,    72,  1066,  3255,   433,-32768,  1685,-32768,-32768,
   879,  1067,   894,  1068,  1069,  1070,  2326,  2326,-32768,-32768,
  1685,  3027,   358,  6006,-32768,-32768,    48,  2570,  2326,  2326,
  1685,   941,   717,  2570,  1685,  1073,  1077,  1078,  1913,-32768,
  1072,  1095,-32768,   968,-32768,  1098,  2326,-32768,    42,    46,
-32768,-32768,  2326,-32768,-32768,-32768,  2383,  2398,  1101,-32768,
-32768,-32768,-32768,-32768,-32768,-32768,  2413,  1102,   972,-32768,
  2326,-32768,   973,   435,-32768,   975,   441,-32768,   977,   491,
-32768,   978,   980,  2326,   614,   983,-32768,-32768,-32768,-32768,
  4141,  4163,  1032,  2326,-32768,  2326,-32768,-32768,-32768,  2326,
  4185,  4207,-32768,  1685,  2326,  1107,  1115,  1009,-32768,-32768,
-32768,    17,-32768,  1061,-32768,  4229,-32768,-32768,  4251,-32768,
-32768,-32768,-32768,-32768,   727,  3057,-32768,  1986,   117,  1986,
   117,  1986,   117,-32768,  3279,  1121,  1685,  2326,  2326,  2326,
  3303,  3327,  1006,  2570,  2326,  2326,   721,  2570,-32768,-32768,
-32768,  1138,-32768,  2326,  1141,  1010,  2326,-32768,  3351,   493,
   -18,  3375,   519,    -8,  3399,   526,    37,  2964,  1012,-32768,
   725,  3423,  3447,  2428,-32768,-32768,  2326,  6029,  4273,  1148,
-32768,  4295,  1028,-32768,  3471,  1157,  2326,  1161,  1163,  2326,
  1164,  1189,  2326,  1190,-32768,   117,-32768,  1685,  1191,  1207,
  1208,-32768,   733,-32768,  2326,-32768,  2326,  1142,-32768,-32768,
  1031,  3495,-32768,-32768,  1079,  3519,-32768,-32768,  1080,  3543,
-32768,   159,  2981,  1081,-32768,-32768,-32768,  1209,  1083,  6052,
  3567,  1093,   117,  1224,   117,  1226,   117,  1227,-32768,-32768,
   117,  1228,-32768,   415,-32768,  1231,  1233,   236,-32768,  1103,
   238,-32768,  1109,   301,-32768,  1119,   320,-32768,   734,-32768,
  1120,-32768,  1122,  1252,   117,  1253,   117,  1256,   117,-32768,
   415,  1261,   415,  1262,-32768,   344,-32768,   347,-32768,   361,
-32768,-32768,   738,-32768,-32768,  1263,  1265,  1266,   415,  1267,
-32768,-32768,-32768,-32768,-32768,  1239,  1274,-32768
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
static const short yypgoto[] = {-32768,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
-32768,-32768,   541,-32768,-32768,   739,-32768,   231,-32768,-32768,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
-32768,  -259,    30,-32768,   299,  1277,    -1,  -330,  -163,     7,
-32768,-32768,-32768,-32768,-32768,  1278,-32768,-32768,-32768,-32768,
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,  -993,  -684,
-32768,-32768,-32768,    43,-32768,    14,-32768,   309,   398,   -67,
  -243,  -610,   458,-32768,    -4
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#define	YYLAST		6183
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed


static const short yytable[] = {   121,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
    56,   499,   728,   202,   429,  1031,   539,  1034,    57,  1037,
   840,   343,   539,   123,   348,   174,   177,   122,   426,   139,
   188,   207,   424,   137,   612,   617,   197,   774,   835,   841,
   843,   775,     3,   118,   364,   345,   366,   346,   165,   167,
   142,   173,   191,   264,   199,   201,   119,   987,   458,   774,
   719,   988,   209,   775,   210,    95,    96,    97,    98,   774,
   670,    99,   297,   775,   197,   450,   180,   671,   125,   181,
   451,   197,  1092,   329,   330,   842,   844,   540,   541,   542,
   543,   544,   672,   540,   541,   542,   543,   544,   138,   673,
   869,   880,   870,    95,    96,    97,    98,   879,   145,    99,
    95,    96,    97,    98,   774,   675,    99,   596,   775,  1118,
   674,  1121,   597,  1124,   144,   830,   734,  1127,   428,  1058,
   425,   460,   145,   329,   330,   111,   112,   265,   266,  1061,
   146,   203,   820,   204,   720,   721,   618,   460,   205,   618,
   545,  1146,    70,  1148,   124,  1150,   802,   148,   175,   178,
   257,   258,   259,   189,   208,   260,   263,   613,   198,   268,
   329,   330,   147,   347,   329,   330,   288,   606,   192,   149,
   258,   293,   296,   324,  1064,   326,   150,   506,   969,   301,
   302,   333,   304,   970,   774,   340,   308,   309,   775,   311,
   161,   162,   111,   112,   297,   528,   200,   329,   330,   154,
   691,   163,   159,   111,   112,   327,   328,   620,   164,   176,
   622,   691,   514,   515,   328,   331,   104,   105,   106,   107,
   372,   915,   329,   330,   297,   160,   774,   354,   355,   356,
   775,   358,   329,   330,   361,   362,   168,   111,   112,   490,
   104,   105,   106,   107,   179,   369,   417,   418,   419,   420,
   332,   374,   375,   376,   377,   378,   379,   380,   381,   382,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
   383,   384,   385,   386,   387,   388,   389,   390,   391,   392,
   393,   394,   395,   396,   397,   398,   399,   400,   401,   402,
   403,   404,   405,   406,   407,   408,   409,   410,   411,   412,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
   413,   414,   415,   430,   329,   330,  1109,    70,   282,   283,
   284,   182,   824,   774,   296,   774,   285,   775,   183,   775,
   329,   330,   341,   435,   436,   437,   438,   439,   440,   441,
   442,   443,   444,   445,   446,   447,   448,   449,   538,   495,
   495,   455,   456,   211,   296,   212,   258,   498,   498,   111,
   112,   462,   493,   494,   184,   466,   880,   185,   470,   880,
   186,   326,   880,   713,   476,   477,   478,   187,   480,   481,
   482,   484,   484,   484,   484,   966,   169,   194,   774,   170,
   171,  1022,   775,  1134,   193,  1136,   501,   502,   503,   257,
   258,   504,   737,   297,   507,   251,   297,   774,   213,   517,
   214,   775,   630,   521,   522,   104,   105,   106,   107,   536,
   104,   105,   106,   107,   215,   135,   216,   880,   141,   143,
   534,   774,   195,   537,   774,   775,   111,   112,   775,   197,
   196,   111,   112,   608,   605,   854,   855,   780,   774,   782,
   783,   784,   775,   880,   863,   864,   880,   155,  1138,   880,
   156,   157,   880,   158,   161,   162,   252,   253,    95,    96,
    97,    98,   254,   255,    99,   163,   607,  1140,   823,   825,
   267,   880,   172,   880,   455,   880,   271,   272,   273,   274,
   275,   609,   276,   277,   278,   279,   280,   281,   282,   283,
   284,  1156,   269,   286,  1157,   756,   285,   329,   330,   287,
   329,   330,   290,   296,   621,   967,   296,   300,  1158,   455,
   329,   330,   629,   657,   871,   632,   872,   500,   416,   197,
   637,   638,   303,   640,   329,   330,   643,   873,   666,   874,
   305,   648,   280,   281,   282,   283,   284,   307,   306,   297,
   693,   505,   285,   658,   659,   313,   757,   943,    95,    96,
    97,    98,   662,   310,    99,   329,   330,   312,   315,   329,
   330,   329,   330,   329,   330,   314,   316,   676,   297,   329,
   330,   217,   766,   218,   692,   219,   773,   220,   954,   686,
   998,   688,   689,   344,   111,   112,  1000,   349,   350,   221,
   289,   222,   204,   151,   152,   318,   153,   205,   271,   272,
   273,   274,   275,   714,   276,   277,   278,   279,   280,   281,
   282,   283,   284,   297,   317,   297,   297,   297,   285,   329,
   330,   329,   330,   223,   733,   224,   703,   704,   486,   487,
   488,   299,   460,   225,   461,   226,  1002,   227,  1057,   228,
   705,   706,   707,   708,   709,   710,   711,   329,   330,   296,
   229,   738,   230,   715,   329,   330,   319,   320,   722,   111,
   112,   797,   692,   323,  1060,   422,   321,   204,   731,   111,
   112,  1063,   205,   342,  1026,   457,   322,   204,   296,   468,
   353,   469,   205,   739,   334,   335,   770,   771,   772,   336,
    67,   291,   231,   233,   232,   234,    71,    72,    73,    74,
    75,    76,    77,    78,    79,    80,    81,    82,    83,    84,
    85,    86,    87,    88,    89,    90,    91,    92,    93,    94,
   351,   352,   779,   296,   781,   296,   296,   296,   357,   359,
   787,   788,   271,   272,   273,   274,   275,   360,   276,   277,
   278,   279,   280,   281,   282,   283,   284,   363,   368,   804,
   805,   365,   285,   809,   235,   237,   236,   238,   826,   367,
   370,  1006,   271,   272,   273,   274,   275,   371,   276,   277,
   278,   279,   280,   281,   282,   283,   284,   421,   239,   831,
   240,   241,   285,   242,   798,   285,   431,   837,   100,   101,
   102,   103,   243,   245,   244,   246,   876,    24,    25,    26,
    27,   247,    29,   248,   850,   432,   108,   109,   433,    34,
    35,   249,   110,   250,   594,   463,   595,   113,   865,   866,
   867,   460,   116,   604,   292,   875,   460,   471,   627,   908,
   474,   602,   603,   460,   832,   736,   833,   479,   460,   895,