Skip to content
Snippets Groups Projects
Gmsh.tab.cpp 255 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	tSphere	299
#define	tSurface	300
#define	tSpline	301
#define	tVolume	302
#define	tCharacteristic	303
#define	tLength	304
#define	tParametric	305
#define	tElliptic	306
#define	tPlane	307
#define	tRuled	308
#define	tTransfinite	309
#define	tComplex	310
#define	tPhysical	311
#define	tUsing	312
#define	tBump	313
#define	tProgression	314
#define	tPlugin	315
#define	tRotate	316
#define	tTranslate	317
#define	tSymmetry	318
#define	tDilate	319
#define	tExtrude	320
#define	tDuplicata	321
#define	tLoop	322
#define	tRecombine	323
#define	tDelete	324
#define	tCoherence	325
#define	tAttractor	326
#define	tLayers	327
#define	tAlias	328
#define	tAliasWithOptions	329
#define	tText2D	330
#define	tText3D	331
#define	tInterpolationScheme	332
#define	tTime	333
#define	tGrain	334
#define	tCombine	335
#define	tBSpline	336
#define	tBezier	337
#define	tNurbs	338
#define	tOrder	339
#define	tKnots	340
#define	tColor	341
#define	tColorTable	342
#define	tFor	343
#define	tIn	344
#define	tEndFor	345
#define	tIf	346
#define	tEndIf	347
#define	tExit	348
#define	tReturn	349
#define	tCall	350
#define	tFunction	351
#define	tShow	352
#define	tHide	353
#define	tGetValue	354
#define	tGMSH_MAJOR_VERSION	355
#define	tGMSH_MINOR_VERSION	356
#define	tGMSH_PATCH_VERSION	357
#define	tAFFECTPLUS	358
#define	tAFFECTMINUS	359
#define	tAFFECTTIMES	360
#define	tAFFECTDIVIDE	361
#define	tOR	362
#define	tAND	363
#define	tEQUAL	364
#define	tNOTEQUAL	365
#define	tLESSOREQUAL	366
#define	tGREATEROREQUAL	367
#define	tPLUSPLUS	368
#define	tMINUSMINUS	369
#define	UNARYPREC	370
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

// $Id: Gmsh.tab.cpp,v 1.299 2007-01-31 12:27:18 remacle 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"
#include "gmshSurface.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);
#line 77 "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

#define	YYFINAL		1183
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#define	YYFLAG		-32768
#define	YYNTBASE	137
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

#define YYTRANSLATE(x) ((unsigned)(x) <= 370 ? yytranslate[x] : 203)
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,
     2,     2,   122,     2,   132,     2,   121,     2,     2,   127,
   128,   119,   117,   133,   118,   131,   120,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,   113,
     2,   115,   108,     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,
   129,     2,   130,   126,     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,
     2,     2,   134,     2,   135,   136,     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,
   107,   109,   110,   111,   112,   114,   116,   123,   124,   125
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,   378,   386,   399,   408,   421,   428,   436,   444,
   452,   462,   470,   480,   498,   506,   514,   526,   535,   548,
   557,   566,   575,   583,   592,   601,   610,   618,   627,   633,
   645,   651,   661,   663,   665,   667,   668,   671,   678,   685,
   692,   699,   704,   711,   718,   725,   730,   737,   741,   746,
   752,   756,   760,   765,   770,   774,   782,   790,   794,   802,
   806,   809,   812,   828,   831,   838,   847,   856,   867,   869,
   872,   874,   878,   883,   885,   891,   903,   917,   918,   926,
   927,   941,   942,   958,   967,   976,   985,   998,  1011,  1024,
  1039,  1054,  1069,  1070,  1083,  1084,  1097,  1098,  1111,  1112,
  1129,  1130,  1147,  1148,  1165,  1166,  1185,  1186,  1205,  1206,
  1225,  1227,  1230,  1236,  1244,  1254,  1257,  1264,  1274,  1284,
  1293,  1303,  1312,  1321,  1328,  1333,  1340,  1347,  1354,  1361,
  1364,  1366,  1370,  1373,  1376,  1379,  1383,  1387,  1391,  1395,
  1399,  1403,  1407,  1411,  1415,  1419,  1423,  1427,  1431,  1435,
  1441,  1446,  1451,  1456,  1461,  1466,  1471,  1476,  1481,  1486,
  1491,  1498,  1503,  1508,  1513,  1518,  1523,  1528,  1535,  1542,
  1549,  1554,  1559,  1564,  1569,  1574,  1579,  1584,  1589,  1594,
  1599,  1604,  1611,  1616,  1621,  1626,  1631,  1636,  1641,  1648,
  1655,  1662,  1667,  1669,  1671,  1673,  1675,  1677,  1679,  1681,
  1683,  1689,  1694,  1699,  1702,  1708,  1712,  1719,  1724,  1732,
  1739,  1741,  1744,  1747,  1751,  1755,  1767,  1777,  1785,  1793,
  1795,  1799,  1801,  1803,  1806,  1810,  1815,  1819,  1825,  1830,
  1832,  1834,  1836,  1840,  1845,  1852,  1860,  1862,  1864,  1868,
  1872,  1882,  1890,  1892,  1898,  1902,  1909,  1911,  1915,  1917,
  1919,  1926,  1931,  1936,  1941,  1948,  1955
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

static const short yyrhs[] = {   138,
     0,     1,     6,     0,     0,   138,   139,     0,   142,     0,
   141,     0,   161,     0,   163,     0,   164,     0,   167,     0,
   168,     0,   169,     0,   170,     0,   173,     0,   188,     0,
   189,     0,   190,     0,   172,     0,   171,     0,   115,     0,
   115,   115,     0,    33,   127,     5,   128,     6,     0,    33,
   127,     5,   128,   140,   202,     6,     0,    33,   127,     5,
   133,   198,   128,     6,     0,    33,   127,     5,   133,   198,
   128,   140,   202,     6,     0,     4,     5,   134,   143,   135,
     6,     0,     4,     5,     4,   193,   134,   143,   135,     6,
     0,     0,   143,   146,     0,   143,   150,     0,   143,   153,
     0,   143,   155,     0,   143,   156,     0,   143,   158,     0,
   191,     0,   144,   133,   191,     0,   191,     0,   145,   133,
   191,     0,     0,     0,     4,   147,   127,   144,   128,   148,
   134,   145,   135,     6,     0,   202,     0,   149,   133,   202,
     0,     0,    76,   127,   191,   133,   191,   133,   191,   128,
   151,   134,   149,   135,     6,     0,   202,     0,   152,   133,
   202,     0,     0,    77,   127,   191,   133,   191,   133,   191,
   133,   191,   128,   154,   134,   152,   135,     6,     0,    78,
   134,   195,   135,   134,   195,   135,     6,     0,     0,    79,
   157,   134,   145,   135,     6,     0,    80,   127,   191,   128,
   196,     6,     0,     7,     0,   104,     0,   105,     0,   106,
     0,   107,     0,   123,     0,   124,     0,     4,   159,   191,
     6,     0,     4,   129,   191,   130,   159,   191,     6,     0,
     4,   129,   134,   198,   135,   130,   159,   196,     6,     0,
     4,   129,   130,     7,   196,     6,     0,     4,   129,   130,
   104,   196,     6,     0,     4,   160,     6,     0,     4,   129,
   191,   130,   160,     6,     0,     4,   131,     4,     7,   202,
     6,     0,     4,   129,   191,   130,   131,     4,     7,   202,
     6,     0,     4,   131,     4,   159,   191,     6,     0,     4,
   129,   191,   130,   131,     4,   159,   191,     6,     0,     4,
   131,     4,   160,     6,     0,     4,   129,   191,   130,   131,
     4,   160,     6,     0,     4,   131,    87,   131,     4,     7,
   199,     6,     0,     4,   129,   191,   130,   131,    87,   131,
     4,     7,   199,     6,     0,     4,   131,    88,     7,   200,
     6,     0,     4,   129,   191,   130,   131,    88,     7,   200,
     6,     0,    61,   127,     4,   128,   131,     4,     7,   191,
     6,     0,    61,   127,     4,   128,   131,     4,     7,   202,
     6,     0,   191,     0,   202,     0,     0,    41,   127,   191,
   128,     7,   193,     6,     0,    41,   127,   191,   128,    90,
    46,   127,   191,   128,     7,   193,     6,     0,    57,    41,
   127,   162,   128,     7,   196,     6,     0,    72,    41,   196,
     7,   134,   191,   133,   191,   133,   191,   135,     6,     0,
    49,    50,   196,     7,   191,     6,     0,    44,   127,   191,
   128,     7,   196,     6,     0,    47,   127,   191,   128,     7,
   196,     6,     0,    42,   127,   191,   128,     7,   196,     6,
     0,    42,   127,   191,   128,     7,   196,    53,   193,     6,
     0,    43,   127,   191,   128,     7,   196,     6,     0,    43,
   127,   191,   128,     7,   196,    53,   193,     6,     0,    51,
   127,   191,   128,     7,   134,   191,   133,   191,   133,     5,
   133,     5,   133,     5,   135,     6,     0,    82,   127,   191,
   128,     7,   196,     6,     0,    83,   127,   191,   128,     7,
   196,     6,     0,    84,   127,   191,   128,     7,   196,    86,
   196,    85,   191,     6,     0,    44,    68,   127,   191,   128,
     7,   196,     6,     0,    72,    44,   196,     7,   134,   191,
   133,   191,   133,   191,   135,     6,     0,    57,    44,   127,
   162,   128,     7,   196,     6,     0,    53,    46,   127,   191,
   128,     7,   196,     6,     0,    54,    46,   127,   191,   128,
     7,   196,     6,     0,    45,   127,   191,   128,     7,   196,
     6,     0,    46,    68,   127,   191,   128,     7,   196,     6,
     0,    57,    46,   127,   162,   128,     7,   196,     6,     0,
    56,    48,   127,   191,   128,     7,   196,     6,     0,    48,
   127,   191,   128,     7,   196,     6,     0,    57,    48,   127,
   162,   128,     7,   196,     6,     0,    63,   193,   134,   165,
   135,     0,    62,   134,   193,   133,   193,   133,   191,   135,
   134,   165,   135,     0,    64,   193,   134,   165,   135,     0,
    65,   134,   193,   133,   191,   135,   134,   165,   135,     0,
   167,     0,   166,     0,   164,     0,     0,   166,   163,     0,
   166,    41,   134,   198,   135,     6,     0,   166,    44,   134,
   198,   135,     6,     0,   166,    46,   134,   198,   135,     6,
     0,   166,    48,   134,   198,   135,     6,     0,    67,   134,
   166,   135,     0,    67,     4,   129,   191,   130,     6,     0,
    74,     4,   129,   191,   130,     6,     0,    75,     4,   129,
   191,   130,     6,     0,    70,   134,   166,   135,     0,    70,
     4,   129,   191,   130,     6,     0,    70,     4,     6,     0,
    70,     4,     4,     6,     0,    87,   199,   134,   166,   135,
     0,    98,   202,     6,     0,    99,   202,     6,     0,    98,
   134,   166,   135,     0,    99,   134,   166,   135,     0,     4,
   202,     6,     0,     4,     4,   129,   191,   130,   202,     6,
     0,     4,     4,     4,   129,   191,   130,     6,     0,     4,
   191,     6,     0,    61,   127,     4,   128,   131,     4,     6,
     0,    81,     4,     6,     0,    94,     6,     0,    38,     6,
     0,    38,   134,   191,   133,   191,   133,   191,   133,   191,
   133,   191,   133,   191,   135,     6,     0,    39,     6,     0,
    89,   127,   191,     8,   191,   128,     0,    89,   127,   191,
     8,   191,     8,   191,   128,     0,    89,     4,    90,   134,
   191,     8,   191,   135,     0,    89,     4,    90,   134,   191,
     8,   191,     8,   191,   135,     0,    91,     0,    97,     4,
     0,    95,     0,    96,     4,     6,     0,    92,   127,   191,
   128,     0,    93,     0,    66,   193,   134,   166,   135,     0,
    66,   134,   193,   133,   193,   133,   191,   135,   134,   166,
   135,     0,    66,   134,   193,   133,   193,   133,   193,   133,
   191,   135,   134,   166,   135,     0,     0,    66,   193,   134,
   166,   174,   186,   135,     0,     0,    66,   134,   193,   133,
   193,   133,   191,   135,   134,   166,   175,   186,   135,     0,
     0,    66,   134,   193,   133,   193,   133,   193,   133,   191,
   135,   134,   166,   176,   186,   135,     0,    66,    41,   134,
   191,   133,   193,   135,     6,     0,    66,    44,   134,   191,
   133,   193,   135,     6,     0,    66,    46,   134,   191,   133,
   193,   135,     6,     0,    66,    41,   134,   191,   133,   193,
   133,   193,   133,   191,   135,     6,     0,    66,    44,   134,
   191,   133,   193,   133,   193,   133,   191,   135,     6,     0,
    66,    46,   134,   191,   133,   193,   133,   193,   133,   191,
   135,     6,     0,    66,    41,   134,   191,   133,   193,   133,
   193,   133,   193,   133,   191,   135,     6,     0,    66,    44,
   134,   191,   133,   193,   133,   193,   133,   193,   133,   191,
   135,     6,     0,    66,    46,   134,   191,   133,   193,   133,
   193,   133,   193,   133,   191,   135,     6,     0,     0,    66,
    41,   134,   191,   133,   193,   135,   177,   134,   186,   135,
     6,     0,     0,    66,    44,   134,   191,   133,   193,   135,
   178,   134,   186,   135,     6,     0,     0,    66,    46,   134,
   191,   133,   193,   135,   179,   134,   186,   135,     6,     0,
     0,    66,    41,   134,   191,   133,   193,   133,   193,   133,
   191,   135,   180,   134,   186,   135,     6,     0,     0,    66,
    44,   134,   191,   133,   193,   133,   193,   133,   191,   135,
   181,   134,   186,   135,     6,     0,     0,    66,    46,   134,
   191,   133,   193,   133,   193,   133,   191,   135,   182,   134,
   186,   135,     6,     0,     0,    66,    41,   134,   191,   133,
   193,   133,   193,   133,   193,   133,   191,   135,   183,   134,
   186,   135,     6,     0,     0,    66,    44,   134,   191,   133,
   193,   133,   193,   133,   193,   133,   191,   135,   184,   134,
   186,   135,     6,     0,     0,    66,    46,   134,   191,   133,
   193,   133,   193,   133,   193,   133,   191,   135,   185,   134,
   186,   135,     6,     0,   187,     0,   186,   187,     0,    73,
   134,   191,   135,     6,     0,    73,   134,   196,   133,   196,
   135,     6,     0,    73,   134,   196,   133,   196,   133,   196,
   135,     6,     0,    69,     6,     0,    55,    44,   196,     7,
   191,     6,     0,    55,    44,   196,     7,   191,    58,    60,
   191,     6,     0,    55,    44,   196,     7,   191,    58,    59,
   191,     6,     0,    55,    46,   134,   191,   135,     7,   196,
     6,     0,    55,    46,   134,   191,   135,     7,   196,     4,
     6,     0,    52,    46,   134,   191,   135,     7,   196,     6,
     0,    55,    48,   134,   191,   135,     7,   196,     6,     0,
    69,    46,   196,     7,   191,     6,     0,    69,    46,   196,
     6,     0,    41,   196,    90,    46,   191,     6,     0,    44,
   196,    90,    46,   191,     6,     0,    44,   196,    90,    48,
   191,     6,     0,    46,   196,    90,    48,   191,     6,     0,
    71,     6,     0,   192,     0,   127,   191,   128,     0,   118,
   191,     0,   117,   191,     0,   122,   191,     0,   191,   118,
   191,     0,   191,   117,   191,     0,   191,   119,   191,     0,
   191,   120,   191,     0,   191,   121,   191,     0,   191,   126,
   191,     0,   191,   113,   191,     0,   191,   115,   191,     0,
   191,   114,   191,     0,   191,   116,   191,     0,   191,   111,
   191,     0,   191,   112,   191,     0,   191,   110,   191,     0,
   191,   109,   191,     0,   191,   108,   191,     8,   191,     0,
    12,   127,   191,   128,     0,    13,   127,   191,   128,     0,
    14,   127,   191,   128,     0,    15,   127,   191,   128,     0,
    16,   127,   191,   128,     0,    17,   127,   191,   128,     0,
    18,   127,   191,   128,     0,    19,   127,   191,   128,     0,
    20,   127,   191,   128,     0,    22,   127,   191,   128,     0,
    23,   127,   191,   133,   191,   128,     0,    24,   127,   191,
   128,     0,    25,   127,   191,   128,     0,    26,   127,   191,
   128,     0,    27,   127,   191,   128,     0,    28,   127,   191,
   128,     0,    29,   127,   191,   128,     0,    30,   127,   191,
   133,   191,   128,     0,    31,   127,   191,   133,   191,   128,
     0,    32,   127,   191,   133,   191,   128,     0,    21,   127,
   191,   128,     0,    12,   129,   191,   130,     0,    13,   129,
   191,   130,     0,    14,   129,   191,   130,     0,    15,   129,
   191,   130,     0,    16,   129,   191,   130,     0,    17,   129,
   191,   130,     0,    18,   129,   191,   130,     0,    19,   129,
   191,   130,     0,    20,   129,   191,   130,     0,    22,   129,
   191,   130,     0,    23,   129,   191,   133,   191,   130,     0,
    24,   129,   191,   130,     0,    25,   129,   191,   130,     0,
    26,   129,   191,   130,     0,    27,   129,   191,   130,     0,
    28,   129,   191,   130,     0,    29,   129,   191,   130,     0,
    30,   129,   191,   133,   191,   130,     0,    31,   129,   191,
   133,   191,   130,     0,    32,   129,   191,   133,   191,   130,
     0,    21,   129,   191,   130,     0,     3,     0,     9,     0,
    10,     0,    11,     0,   101,     0,   102,     0,   103,     0,
     4,     0,     4,   136,   134,   191,   135,     0,     4,   129,
   191,   130,     0,   132,     4,   129,   130,     0,     4,   160,
     0,     4,   129,   191,   130,   160,     0,     4,   131,     4,
     0,     4,   129,   191,   130,   131,     4,     0,     4,   131,
     4,   160,     0,     4,   129,   191,   130,   131,     4,   160,
     0,   100,   127,     5,   133,   191,   128,     0,   194,     0,
   118,   193,     0,   117,   193,     0,   193,   118,   193,     0,
   193,   117,   193,     0,   134,   191,   133,   191,   133,   191,
   133,   191,   133,   191,   135,     0,   134,   191,   133,   191,
   133,   191,   133,   191,   135,     0,   134,   191,   133,   191,
   133,   191,   135,     0,   127,   191,   133,   191,   133,   191,
   128,     0,   196,     0,   195,   133,   196,     0,   191,     0,
   197,     0,   134,   135,     0,   134,   198,   135,     0,   118,
   134,   198,   135,     0,   191,     8,   191,     0,   191,     8,
   191,     8,   191,     0,    41,   134,   191,   135,     0,   164,
     0,   167,     0,   173,     0,     4,   129,   130,     0,   118,
     4,   129,   130,     0,     4,   129,   134,   198,   135,   130,
     0,   118,     4,   129,   134,   198,   135,   130,     0,   191,
     0,   197,     0,   198,   133,   191,     0,   198,   133,   197,
     0,   134,   191,   133,   191,   133,   191,   133,   191,   135,
     0,   134,   191,   133,   191,   133,   191,   135,     0,     4,
     0,     4,   131,    87,   131,     4,     0,   134,   201,   135,
     0,     4,   129,   191,   130,   131,    88,     0,   199,     0,
   201,   133,   199,     0,     5,     0,    40,     0,    35,   127,
   202,   133,   202,   128,     0,    36,   127,   202,   128,     0,
    37,   127,   202,   128,     0,    34,   127,   202,   128,     0,
    34,   127,   202,   133,   198,   128,     0,    34,   127,     4,
   131,     4,   128,     0,    34,   127,     4,   129,   191,   130,
   131,     4,   128,     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,
   142,   144,   149,   151,   154,   156,   157,   158,   159,   160,
   161,   162,   163,   164,   165,   166,   167,   168,   169,   172,
   177,   183,   189,   204,   217,   245,   253,   262,   270,   271,
   272,   273,   274,   275,   278,   281,   285,   288,   292,   483,
   501,   511,   517,   524,   532,   538,   544,   551,   559,   565,
   573,   578,   582,   591,   593,   594,   595,   596,   599,   601,
   604,   639,   678,   732,   749,   767,   778,   797,   811,   828,
   854,   881,   895,   912,   926,   943,   963,   986,   996,  1010,
  1015,  1023,  1025,  1047,  1070,  1086,  1093,  1115,  1133,  1151,
  1169,  1195,  1213,  1239,  1259,  1283,  1307,  1333,  1350,  1357,
  1376,  1394,  1435,  1458,  1474,  1494,  1511,  1528,  1548,  1554,
  1559,  1564,  1571,  1573,  1574,  1577,  1582,  1586,  1602,  1618,
  1634,  1654,  1669,  1675,  1681,  1692,  1702,  1712,  1728,  1746,
  1760,  1767,  1773,  1782,  1795,  1841,  1856,  1867,  1887,  1897,
  1919,  1923,  1928,  1933,  1943,  1960,  1976,  2002,  2029,  2061,
  2068,  2073,  2079,  2083,  2091,  2100,  2108,  2116,  2121,  2129,
  2134,  2142,  2147,  2157,  2164,  2171,  2178,  2185,  2192,  2199,
  2206,  2213,  2220,  2225,  2232,  2237,  2244,  2249,  2256,  2261,
  2268,  2273,  2280,  2285,  2292,  2297,  2304,  2309,  2316,  2321,
  2331,  2335,  2340,  2350,  2372,  2396,  2404,  2423,  2441,  2459,
  2488,  2523,  2528,  2555,  2569,  2587,  2594,  2600,  2603,  2611,
  2621,  2623,  2624,  2625,  2626,  2627,  2628,  2629,  2630,  2637,
  2638,  2639,  2640,  2641,  2642,  2643,  2644,  2645,  2646,  2647,
  2648,  2649,  2650,  2651,  2652,  2653,  2654,  2655,  2656,  2657,
  2658,  2659,  2660,  2661,  2662,  2663,  2664,  2665,  2666,  2667,
  2668,  2670,  2671,  2672,  2673,  2674,  2675,  2676,  2677,  2678,
  2679,  2680,  2681,  2682,  2683,  2684,  2685,  2686,  2687,  2688,
  2689,  2690,  2695,  2700,  2701,  2702,  2703,  2704,  2705,  2709,
  2725,  2740,  2760,  2774,  2787,  2810,  2828,  2846,  2864,  2882,
  2889,  2894,  2898,  2902,  2906,  2912,  2917,  2921,  2925,  2931,
  2937,  2944,  2950,  2954,  2959,  2963,  2974,  2981,  2992,  3012,
  3022,  3032,  3042,  3059,  3078,  3102,  3130,  3136,  3140,  3144,
  3156,  3161,  3173,  3180,  3201,  3206,  3220,  3226,  3232,  3237,
  3245,  3253,  3267,  3281,  3285,  3304,  3326
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","tSphere","tSurface",
"tSpline","tVolume","tCharacteristic","tLength","tParametric","tElliptic","tPlane",
"tRuled","tTransfinite","tComplex","tPhysical","tUsing","tBump","tProgression",
"tPlugin","tRotate","tTranslate","tSymmetry","tDilate","tExtrude","tDuplicata",
"tLoop","tRecombine","tDelete","tCoherence","tAttractor","tLayers","tAlias",
"tAliasWithOptions","tText2D","tText3D","tInterpolationScheme","tTime","tGrain",
"tCombine","tBSpline","tBezier","tNurbs","tOrder","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","'<'","tLESSOREQUAL","'>'","tGREATEROREQUAL","'+'","'-'",
"'*'","'/'","'%'","'!'","tPLUSPLUS","tMINUSMINUS","UNARYPREC","'^'","'('","')'",
"'['","']'","'.'","'#'","','","'{'","'}'","'~'","All","GeoFormatItems","GeoFormatItem",
"SendToFile","Printf","View","Views","ElementCoords","ElementValues","Element",
"@1","@2","Text2DValues","Text2D","@3","Text3DValues","Text3D","@4","InterpolationMatrix",
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
"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",
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
"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,
   137,   137,   138,   138,   139,   139,   139,   139,   139,   139,
   139,   139,   139,   139,   139,   139,   139,   139,   139,   140,
   140,   141,   141,   141,   141,   142,   142,   143,   143,   143,
   143,   143,   143,   143,   144,   144,   145,   145,   147,   148,
   146,   149,   149,   151,   150,   152,   152,   154,   153,   155,
   157,   156,   158,   159,   159,   159,   159,   159,   160,   160,
   161,   161,   161,   161,   161,   161,   161,   161,   161,   161,
   161,   161,   161,   161,   161,   161,   161,   161,   161,   162,
   162,    -1,   163,   163,   163,   163,   163,   163,   163,   163,
   163,   163,   163,   163,   163,   163,   163,   163,   163,   163,
   163,   163,   163,   163,   163,   163,   163,   163,   164,   164,
   164,   164,   165,   165,   165,   166,   166,   166,   166,   166,
   166,   167,   167,   167,   167,   168,   168,   168,   168,   169,
   170,   170,   170,   170,   171,   171,   171,   171,   171,   171,
   171,   171,   171,   171,   172,   172,   172,   172,   172,   172,
   172,   172,   172,   172,   173,   173,   173,   174,   173,   175,
   173,   176,   173,   173,   173,   173,   173,   173,   173,   173,
   173,   173,   177,   173,   178,   173,   179,   173,   180,   173,
   181,   173,   182,   173,   183,   173,   184,   173,   185,   173,
   186,   186,   187,   187,   187,   187,   188,   188,   188,   188,
   188,   188,   188,   188,   188,   189,   189,   189,   189,   190,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
   191,   191,   191,   191,   191,   191,   191,   191,   191,   191,
   191,   191,   191,   191,   191,   191,   191,   191,   191,   191,
   191,   191,   191,   191,   191,   191,   191,   191,   191,   191,
   191,   191,   191,   191,   191,   191,   191,   191,   191,   191,
   191,   191,   191,   191,   191,   191,   191,   191,   191,   191,
   191,   191,   191,   191,   191,   191,   191,   191,   191,   191,
   191,   191,   192,   192,   192,   192,   192,   192,   192,   192,
   192,   192,   192,   192,   192,   192,   192,   192,   192,   192,
   193,   193,   193,   193,   193,   194,   194,   194,   194,   195,
   195,   196,   196,   196,   196,   196,   197,   197,   197,   197,
   197,   197,   197,   197,   197,   197,   198,   198,   198,   198,
   199,   199,   199,   199,   200,   200,   201,   201,   202,   202,
   202,   202,   202,   202,   202,   202,   202
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,     0,     7,    12,     8,    12,     6,     7,     7,     7,
     9,     7,     9,    17,     7,     7,    11,     8,    12,     8,
     8,     8,     7,     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,     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,
     0,     0,   149,     0,   154,     0,   151,     0,     0,     0,
     0,     4,     6,     5,     7,     8,     9,    10,    11,    12,
    13,    19,    18,    14,    15,    16,    17,   273,   280,   329,
    54,   274,   275,   276,     0,     0,     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,   330,
     0,   277,   278,   279,    55,    56,    57,    58,     0,     0,
     0,    59,    60,     0,     0,     0,     0,     0,     0,     0,
   211,     0,     0,   142,     0,   144,   280,     0,     0,     0,
     0,   310,   311,   312,   302,     0,   303,     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,
     0,     0,     0,     0,     0,     0,     0,   291,     0,     0,
     0,     0,     0,     0,     0,     0,   116,     0,     0,   116,
   210,     0,     0,     0,     0,     0,     0,     0,     0,   323,
     0,     0,     0,     0,     0,   141,     0,   150,   329,   116,
     0,   116,     0,     0,     0,     0,     0,   284,     0,    28,
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,   280,   214,   213,
   215,     0,     0,     0,     0,     0,     0,     0,     0,     0,
    66,   138,     0,     0,     0,     0,     0,     0,     0,     0,
     0,     0,     0,     0,     0,     0,     0,   135,     0,     0,
     0,     0,   280,     0,     0,     0,   304,   317,   318,     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,   293,   292,     0,
     0,     0,     0,   116,   116,     0,     0,     0,     0,     0,
     0,     0,     0,   116,     0,     0,     0,     0,   128,     0,
     0,     0,     0,     0,     0,   140,     0,     0,     0,     0,
     0,   116,     0,     0,     0,   152,     0,   131,     0,   132,
     0,     0,   286,     0,     0,     0,     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,
     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,   212,     0,     0,     0,     0,
    54,     0,     0,     0,     0,     0,    61,     0,   229,   228,
   226,   227,   222,   224,   223,   225,   217,   216,   218,   219,
   220,   221,     0,     0,     0,   313,     0,     0,     0,     0,
     0,   212,     0,   305,   307,     0,     0,     0,     0,   212,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
     0,     0,     0,     0,     0,     0,     0,    80,    81,     0,
     0,     0,     0,     0,     0,     0,   295,   294,   115,     0,
   114,   113,     0,     0,     0,     0,     0,     0,     0,   158,
     0,     0,     0,     0,     0,   122,   117,   205,     0,   129,
     0,   126,     0,     0,     0,     0,     0,     0,     0,     0,
     0,     0,     0,     0,   153,   133,   134,     0,   282,   288,
     0,    28,    39,     0,     0,     0,    51,     0,     0,    29,
    30,    31,    32,    33,    34,   231,   252,   232,   253,   233,
   254,   234,   255,   235,   256,   236,   257,   237,   258,   238,
   259,   239,   260,   251,   272,   240,   261,     0,     0,   242,
   263,   243,   264,   244,   265,   245,   266,   246,   267,   247,
   268,     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,   283,     0,
    22,    20,     0,     0,     0,     0,   282,   309,   314,     0,
   306,     0,     0,   319,   320,     0,     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,
     0,     0,     0,     0,     0,   109,   111,     0,     0,     0,
     0,     0,   155,     0,     0,     0,     0,     0,     0,     0,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
     0,     0,   130,     0,     0,     0,     0,   285,     0,   281,
     0,     0,     0,     0,     0,     0,     0,    26,     0,     0,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     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,   230,    21,     0,     0,
     0,     0,     0,     0,     0,   308,   206,     0,     0,     0,
     0,   207,   208,     0,     0,   209,     0,     0,    87,     0,
     0,     0,     0,   197,     0,     0,     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,   191,   123,     0,     0,     0,     0,
     0,     0,   204,   127,     0,     0,   124,   125,     0,     0,
     0,   324,     0,     0,     0,   145,   137,   287,   136,     0,
     0,     0,     0,     0,   300,     0,     0,   241,   262,   248,
   269,   249,   270,   250,   271,     0,   336,   335,   331,   290,
     0,    54,     0,     0,     0,     0,    62,     0,     0,     0,
   325,    23,    24,     0,     0,   315,     0,    83,     0,    90,
     0,    92,     0,     0,    88,   103,     0,    89,   107,     0,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
     0,     0,   139,     0,     0,     0,     0,   116,     0,   173,
     0,   175,     0,   177,     0,     0,   196,     0,   159,   192,
     0,     0,     0,     0,     0,     0,     0,     0,    95,    96,
     0,     0,     0,     0,   289,    27,     0,    35,     0,     0,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     0,     0,     0,    37,     0,     0,     0,     0,     0,    73,
     0,     0,    74,     0,   328,     0,     0,   316,     0,     0,
     0,    98,   104,     0,   202,   101,   102,     0,     0,     0,
   200,   203,   106,    85,   100,   105,   108,     0,     0,     0,
   299,     0,   298,     0,     0,   164,     0,     0,   165,     0,
     0,   166,     0,     0,     0,   302,     0,   118,   119,   120,
   121,     0,     0,     0,     0,   322,     0,   147,   146,    40,
     0,     0,     0,   301,     0,     0,     0,     0,     0,    63,
    69,    71,     0,    77,     0,    25,     0,     0,    91,    93,
     0,   199,   198,   201,    78,    79,   116,     0,   112,     0,
     0,     0,     0,     0,     0,   116,     0,     0,     0,     0,
     0,     0,     0,     0,     0,    36,     0,     0,     0,    38,
    52,    53,   337,     0,   326,     0,     0,     0,     0,     0,
   297,     0,     0,     0,     0,     0,     0,     0,     0,     0,
   160,     0,   193,     0,     0,     0,     0,   321,   148,     0,
     0,     0,     0,    75,     0,     0,     0,   110,     0,   179,
     0,     0,   181,     0,     0,   183,     0,     0,   156,     0,
   116,     0,     0,     0,     0,    97,     0,    44,     0,    50,
     0,    84,     0,   296,   167,     0,     0,   174,   168,     0,
     0,   176,   169,     0,     0,   178,     0,   162,     0,   194,
    86,    99,     0,     0,     0,     0,     0,     0,   185,     0,
   187,     0,   189,   161,   157,     0,     0,    41,     0,    48,
     0,     0,     0,   170,     0,     0,   171,     0,     0,   172,
     0,     0,   195,     0,    42,     0,   143,     0,     0,     0,
     0,     0,     0,     0,   163,     0,     0,     0,     0,   180,
     0,   182,     0,   184,     0,    43,    45,     0,    46,    94,
     0,     0,     0,     0,     0,   186,   188,   190,    47,    49,
     0,     0,     0
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

static const short yydefgoto[] = {  1181,
     2,    52,   623,    53,    54,   376,   907,   913,   550,   702,
  1025,  1144,   551,  1114,  1168,   552,  1146,   553,   554,   706,
   555,   118,   208,    55,   487,   517,   132,   500,   501,   133,
    59,    60,    61,    62,    63,   134,   674,  1080,  1126,   957,
   960,   963,  1096,  1100,  1104,  1135,  1138,  1141,   784,   785,
    65,    66,    67,   135,   121,   328,   168,   814,   815,   137,
   300,   192,   618,   735,   489
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

static const short yypact[] = {  2759,
    31,  2828,-32768,  2112,  -101,    10,    42,  1567,   -56,    -8,
  1315,    72,  1441,    93,   103,    91,   112,   116,   167,   196,
   521,    98,   546,   120,   123,   114,   114,   169,   266,     6,
   296,     8,   355,    56,   391,   398,   408,   258,   271,   297,
    13,    29,-32768,   317,-32768,   429,-32768,   453,   457,    20,
    27,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,     2,    17,
-32768,-32768,-32768,-32768,   -50,   -42,   129,   190,   224,   289,
   325,   384,   404,   420,   428,   449,   464,   487,   502,   503,
   508,   511,   522,   526,   529,   346,   349,   366,   389,-32768,
   392,-32768,-32768,-32768,-32768,-32768,-32768,-32768,  2318,  2318,
  2318,-32768,-32768,  2318,   678,    15,   478,  2318,   495,  1284,
-32768,   516,   533,-32768,  2318,-32768,   394,   407,  1951,  2318,
  1178,-32768,-32768,-32768,  1502,   436,-32768,  2318,  2318,   425,
  2318,   523,  2318,   458,   535,  2318,  2318,  1693,  2318,   505,
   525,   530,  1693,   514,   543,   534,   544,   556,   557,   597,
   727,   114,   114,   114,  2318,  2318,   -82,-32768,    66,   114,
   598,   601,   616,  1986,   308,   622,-32768,  1693,    16,-32768,
-32768,  1693,  1693,   630,   647,   765,  2318,  2318,  2318,   653,
  2318,   652,   697,  2318,  2318,-32768,   783,-32768,-32768,-32768,
   785,-32768,   786,   664,  2318,   790,   663,-32768,   114,-32768,
  2318,  2318,  2318,  2318,  2318,  2318,  2318,  2318,  2318,  2318,
  2318,  2318,  2318,  2318,  2318,  2318,  2318,  2318,  2318,  2318,
  2318,  2318,  2318,  2318,  2318,  2318,  2318,  2318,  2318,  2318,
  2318,  2318,  2318,  2318,  2318,  2318,  2318,  2318,  2318,  2318,
  2318,  2318,   371,   435,   435,   435,   793,   427,   673,   673,
   673,  5244,    23,  2158,  4531,   332,   670,   795,   674,  1413,
-32768,-32768,  2318,  2318,  2318,  2318,  2318,  2318,  2318,  2318,
  2318,  2318,  2318,  2318,  2318,  2318,  2318,-32768,    -5,  3673,
  1760,  2318,   450,  2158,  5265,  2443,-32768,  1502,-32768,    -3,
  2318,   758,  5286,  5307,  2318,  5328,   109,  5349,  2318,   759,
  5370,  5391,   799,  5412,  2318,  2318,  2318,   804,  2318,  2318,
  2318,  2283,  2283,  2283,  2283,   694,   -74,-32768,-32768,  3699,
  3725,   114,   114,   559,   559,   -67,  2318,  2318,  2318,  1986,
  1986,  2318,   -44,-32768,  2318,   949,    92,   821,-32768,  2318,
  2887,   822,   824,  2318,  2318,-32768,  5433,  5454,  5475,   745,
  3751,-32768,   701,  1627,  5496,-32768,  2904,-32768,  2948,-32768,
  2318,  4554,   341,  2318,   316,     4,  5517,  4577,  5538,  4600,
  5559,  4623,  5580,  4646,  5601,  4669,  5622,  4692,  5643,  4715,
  5664,  4738,  5685,  4761,  5706,  4784,  5727,  4807,  3777,  3803,
  5748,  4830,  5769,  4853,  5790,  4876,  5811,  4899,  5832,  4922,
  5853,  4945,  3829,  3855,  3881,  3907,  3933,  3959,   284,    58,
   703,   709,   710,   706,  2318,-32768,  1693,  1693,   527,   122,
   435,  2318,   835,   838,    19,   715,-32768,  2598,   489,   813,
   700,   700,   547,   547,   547,   547,   451,   451,   673,   673,
   673,   673,    22,  2158,  2318,-32768,  2158,  4968,  1249,  1819,
   537,    24,  2158,-32768,  2617,  2318,   839,   840,  5874,   841,
  2318,  2318,   842,  5895,  2318,   843,   844,  2318,   848,  3025,
  5916,  5937,  2318,  3115,  3143,  5958,   728,  6252,-32768,   729,
   730,   731,   732,   114,  2318,  2318,-32768,-32768,-32768,   733,
  1059,-32768,   734,  2318,  3985,  4011,  4037,  3647,   114,  2970,
  4991,   -58,   -26,   -19,    39,-32768,-32768,-32768,  2318,-32768,
  5014,-32768,   737,   738,  5037,  5060,   855,   857,   859,   736,
  2318,  3014,  2318,  2318,-32768,-32768,-32768,  5083,    70,-32768,
  3171,-32768,-32768,   746,   747,   741,-32768,   749,   871,-32768,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
-32768,-32768,-32768,-32768,-32768,-32768,-32768,  2318,  2318,-32768,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
-32768,  2318,  2318,  2318,  2318,  2318,  2318,  2318,   874,-32768,
  2158,   435,-32768,-32768,  2318,   873,   877,   750,    34,  2318,
   878,   879,  1539,-32768,   880,   757,    13,   882,-32768,  2318,
-32768,   774,   435,    69,  4063,   541,   405,-32768,-32768,  2158,
-32768,   114,   845,  1502,-32768,  2318,  1791,  1693,  1693,   885,
  1693,  1912,  2243,  1693,   886,  2368,  1693,  1693,  2387,   760,
   888,   889,   890,  1113,   892,   893,   894,   895,   896,   897,
   898,   902,   -22,  4089,  4115,-32768,-32768,  3199,   114,   114,
   114,   329,-32768,   245,   901,  2318,  2158,  2318,  2158,  2158,
  2158,  2406,   903,  2318,  2318,   904,   906,  1693,  1693,  1693,
   911,  4141,-32768,  2636,  1147,   910,   913,-32768,   912,-32768,
    14,   792,  2318,  2318,  1693,   787,  2318,-32768,  5979,  5106,
  6000,  5129,  6021,  5152,  6042,  5175,  5198,   794,   176,   807,
  6063,-32768,-32768,   105,   373,   789,   929,  2484,-32768,-32768,
-32768,    13,  2318,-32768,   545,-32768,  6252,-32768,   932,    28,
  2318,   810,   578,    18,   814,  6252,-32768,    33,    35,  1693,
   936,-32768,-32768,   937,  1693,-32768,   938,   939,-32768,  2318,
  1693,  1693,  1693,-32768,   501,  1693,  1693,  1693,  1693,  1693,
  1693,  1693,   611,  2318,  2318,  2318,   817,    86,    89,   100,
  1986,   946,   819,    -1,-32768,-32768,  6084,   579,  6105,   583,
   584,   587,-32768,-32768,  4167,  4193,-32768,-32768,   948,   950,
   869,-32768,  2318,  2318,  2318,-32768,-32768,   341,-32768,   951,
  2318,  4219,  4245,   588,-32768,  2318,  6126,-32768,-32768,-32768,
-32768,-32768,-32768,-32768,-32768,   829,-32768,-32768,-32768,-32768,
  1693,   435,  2318,   969,   973,    19,-32768,   972,  5221,    13,
-32768,-32768,-32768,   435,  4271,-32768,   850,-32768,  2318,-32768,
   114,-32768,   114,   975,-32768,-32768,   976,-32768,-32768,  4297,
   978,   979,   980,  2318,  2318,   751,   981,   983,   993,   998,
  1001,  1002,-32768,  2283,  3227,  6147,  2656,   559,   114,  1003,
   114,  1005,   114,  1006,  3255,   350,-32768,  1693,-32768,-32768,
    24,  1007,   841,  1009,  1010,  1011,  2318,  2318,-32768,-32768,
  1693,  3059,   628,  6168,-32768,-32768,   229,  6252,  2318,  2318,
  1693,   884,   625,  6252,  1693,  1016,  1017,  1019,  2503,-32768,
  1015,  1021,-32768,   905,-32768,  1022,  2318,-32768,  6189,    52,
    59,-32768,-32768,  2318,-32768,-32768,-32768,  2522,  2541,  1023,
-32768,-32768,-32768,-32768,-32768,-32768,-32768,  2560,  1028,   907,
-32768,  2318,-32768,   908,   367,-32768,   914,   369,-32768,   915,
   372,-32768,   917,   918,  2318,   853,   909,-32768,-32768,-32768,
-32768,  4323,  4349,   952,  2318,-32768,  2318,-32768,-32768,-32768,
  2318,  4375,  4401,-32768,  1693,  2318,  1032,  1033,   927,-32768,
-32768,-32768,    13,-32768,   958,-32768,  4427,  1049,-32768,-32768,
  4453,-32768,-32768,-32768,-32768,-32768,   559,  3087,-32768,  1986,
   245,  1986,   245,  1986,   245,-32768,  3283,  1034,  1693,  2318,
  2318,  2318,  3311,  3339,   923,  6252,  2318,  2318,   634,  6252,
-32768,-32768,-32768,  1052,-32768,  2318,   114,  1057,   930,  2318,
-32768,  3367,   374,    40,  3395,   377,    99,  3423,   381,   186,
  3031,   933,-32768,   635,  3451,  3479,  2579,-32768,-32768,  2318,
  6210,  4479,  1058,-32768,  4505,    64,   935,-32768,  3507,  1060,
  2318,  1066,  1067,  2318,  1068,  1069,  2318,  1072,-32768,   245,
-32768,  1693,  1073,  1074,  1075,-32768,   639,-32768,  2318,-32768,
  2318,-32768,  1077,-32768,-32768,   953,  3535,-32768,-32768,   954,
  3563,-32768,-32768,   956,  3591,-32768,   242,  3075,   957,-32768,
-32768,-32768,  1080,   959,  6231,  3619,   964,   245,  1085,   245,
  1092,   245,  1093,-32768,-32768,   245,  1105,-32768,   435,-32768,
  1108,  1078,   247,-32768,   984,   275,-32768,   987,   286,-32768,
   988,   287,-32768,   642,-32768,   990,-32768,   982,  1121,   245,
  1122,   245,  1123,   245,-32768,   435,  1127,   435,  1128,-32768,
   294,-32768,   323,-32768,   328,-32768,-32768,   650,-32768,-32768,
  1129,  1130,  1131,   435,  1133,-32768,-32768,-32768,-32768,-32768,
  1144,  1145,-32768
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
static const short yypgoto[] = {-32768,
-32768,-32768,   409,-32768,-32768,   604,-32768,    87,-32768,-32768,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
-32768,  -265,    36,-32768,   272,  1146,     3,  -332,  -173,    12,
-32768,-32768,-32768,-32768,-32768,  1148,-32768,-32768,-32768,-32768,
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, -1002,  -599,
-32768,-32768,-32768,    49,-32768,   279,-32768,   166,   406,    85,
  -249,  -615,   321,-32768,    -4
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

#define	YYLAST		6378


static const short yytable[] = {   122,
   432,   734,   503,   346,    57,   204,   351,   543,  1044,   176,
  1047,   179,  1050,    58,   429,   124,   190,   543,   266,   348,
   209,   349,   616,   848,   199,   123,   367,   621,   369,   427,
   632,   199,   193,   843,   332,   333,     3,   725,   850,   119,
   852,   140,   332,   333,   461,   201,   203,   126,   144,   332,
   333,   334,   120,    96,    97,    98,    99,   999,   494,   100,
    96,    97,    98,    99,  1000,   504,   100,   782,   676,  1092,
   138,   783,   332,   333,   199,   677,   211,  1107,   212,   544,
   545,   546,   547,   548,   213,   851,   214,   853,   509,   544,
   545,   546,   547,   548,   332,   333,   182,   518,   519,   183,
   678,   267,   268,    96,    97,    98,    99,   679,   782,   100,
   774,    71,   783,   633,   680,  1133,   838,  1136,   139,  1139,
   726,   727,   453,  1142,   112,   113,   428,   454,    71,   463,
   205,   464,   206,   889,   332,   333,   622,   207,   549,   177,
   148,   180,   622,   125,   350,   156,   191,  1161,   810,  1163,
   210,  1165,   617,   200,   471,   194,   472,   259,   260,   261,
   202,   150,   262,   265,   610,   147,   270,   782,   332,   333,
   510,   783,   681,   290,  1072,   332,   333,   260,   295,   298,
   332,   333,   332,   333,   890,   600,   303,   304,   532,   306,
   601,   308,   112,   113,   311,   312,   740,   314,   143,   335,
   697,   463,   332,   333,   624,   332,   333,   626,   105,   106,
   107,   108,   151,   330,   331,   299,   332,   333,   879,   146,
   880,   881,   331,   882,   925,   105,   106,   107,   108,   147,
   163,   164,   883,  1075,   884,   357,   358,   359,   149,   361,
   165,   152,   364,   365,   112,   113,   161,   166,   420,   421,
   422,   423,   609,   372,   782,   215,   162,   216,   783,   377,
   378,   379,   380,   381,   382,   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,   413,   414,   415,   416,   417,
   418,   433,   170,   828,   167,   169,   171,   175,   463,   172,
   782,   173,   298,   782,   783,   782,   217,   783,   218,   783,
  1078,   438,   439,   440,   441,   442,   443,   444,   445,   446,
   447,   448,   449,   450,   451,   452,   499,   499,   431,   458,
   459,   178,   298,   782,   260,   502,   502,   783,   299,   465,
   219,   719,   220,   469,   782,   782,   980,   474,   783,   783,
   181,   981,   782,   480,   481,   482,   783,   484,   485,   486,
   488,   488,   488,   488,   419,   199,  1124,  1034,   299,   832,
   743,  1149,   163,   164,   187,   505,   506,   507,   259,   260,
   508,   782,   165,   511,   184,   783,   782,   188,   521,   174,
   783,   185,   525,   526,    96,    97,    98,    99,   540,  1151,
   100,   186,   598,   136,   599,   221,   142,   222,   145,   538,
  1153,  1155,   541,   189,   332,   333,   612,   788,  1171,   790,
   791,   792,   332,   333,   196,   105,   106,   107,   108,   199,
   327,   344,   329,   195,   890,   332,   333,   890,   336,   542,
   890,   223,   343,   224,   112,   113,   197,  1172,   831,   833,
   198,   781,  1173,   112,   113,   611,   332,   333,    96,    97,
    98,    99,   253,   458,   100,   254,   105,   106,   107,   108,
   613,   269,   965,   332,   333,   332,   333,   375,   332,   333,
   332,   333,   255,   332,   333,   112,   113,   332,   333,  1010,
   271,  1012,   298,   625,  1014,   298,  1071,   890,   458,  1074,
   225,   634,   226,  1077,   637,   256,   112,   113,   257,   642,
   643,   288,   291,   646,   206,   302,   649,   112,   113,   207,
   227,   654,   228,   890,   699,   697,   890,   289,   299,   890,
   292,   299,   890,   664,   665,   954,   229,   635,   230,   112,
   113,   305,   668,   313,   231,   425,   232,   206,   318,   864,
   865,   890,   207,   890,   153,   890,   154,   682,   155,   284,
   285,   286,   112,   113,   698,   233,   287,   234,   460,   692,
   206,   694,   695,   347,   309,   207,   157,   352,   353,   158,
   235,   159,   236,   160,   490,   491,   492,   720,   275,   276,
   277,   278,   279,   280,   281,   282,   283,   284,   285,   286,
   497,   498,   307,   237,   287,   238,   873,   874,   739,   329,
    25,    26,    27,    28,   310,    30,   709,   710,   239,   241,
   240,   242,    35,    36,   243,   977,   244,   245,   315,   246,
   711,   712,   713,   714,   715,   716,   717,   319,   247,   298,
   248,   316,   249,   721,   250,   251,   317,   252,   728,   463,
   321,   608,   698,   282,   283,   284,   285,   286,   737,   463,
   322,   631,   287,   463,  1039,   742,   320,   840,   298,   841,
    68,   258,   323,   324,   746,   299,    72,    73,    74,    75,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
    76,    77,    78,    79,    80,    81,    82,    83,    84,    85,
    86,    87,    88,    89,    90,    91,    92,    93,    94,    95,
   463,   463,   847,   892,   299,   463,   463,   894,   895,   463,
   911,   896,   912,   325,   787,   298,   789,   298,   298,   298,
   326,   337,   795,   796,   338,   273,   274,   275,   276,   277,
   278,   279,   280,   281,   282,   283,   284,   285,   286,   339,
   345,   812,   813,   287,   940,   817,   941,   986,   354,   987,
   834,   299,   978,   299,   299,   299,   911,  1082,  1063,  1083,
   356,   986,   663,  1113,  1156,   355,  1157,   101,   102,   103,
   104,   839,  1174,   360,  1175,   362,   363,   672,   366,   845,
   368,   370,   371,   373,   109,   110,   374,   424,   287,   111,
   434,   435,   436,   466,   114,   478,   475,   263,   860,   117,
   483,   264,   278,   279,   280,   281,   282,   283,   284,   285,