Skip to content
Snippets Groups Projects
Gmsh.tab.cpp 406 KiB
Newer Older
/* A Bison parser, made by GNU Bison 2.6.  */
/* Bison implementation for Yacc-like parsers in C
      Copyright (C) 1984, 1989-1990, 2000-2012 Free Software Foundation, Inc.
   
   This program is free software: you can redistribute it and/or modify
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation, either version 3 of the License, or
   (at your option) any later version.
   
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
   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.
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

/* As a special exception, you may create a larger work that contains
   part or all of the Bison parser skeleton and distribute that work
   under terms of your choice, so long as that work isn't itself a
   parser generator using the skeleton or a modified version thereof
   as a parser skeleton.  Alternatively, if you modify or redistribute
   the parser skeleton itself, you may (at your option) remove this
   special exception, which will cause the skeleton and the resulting
   Bison output files to be licensed under the GNU General Public
   License without this special exception.
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
   This special exception was added by the Free Software Foundation in
   version 2.2 of Bison.  */

/* C LALR(1) parser skeleton written by Richard Stallman, by
   simplifying the original so-called "semantic" parser.  */

/* All symbols defined below should begin with yy or YY, to avoid
   infringing on user name space.  This should be done even for local
   variables, as they might otherwise be expanded by user macros.
   There are some unavoidable exceptions within include files to
   define necessary library symbols; they are noted "INFRINGES ON
   USER NAME SPACE" below.  */

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

/* Bison version.  */
#define YYBISON_VERSION "2.6"
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

/* Skeleton name.  */
#define YYSKELETON_NAME "yacc.c"

/* Pure parsers.  */
#define YYPURE 0

/* Push parsers.  */
#define YYPUSH 0

/* Pull parsers.  */
#define YYPULL 1

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
/* Substitute the variable and function names.  */
#define yyparse         gmsh_yyparse
#define yylex           gmsh_yylex
#define yyerror         gmsh_yyerror
#define yylval          gmsh_yylval
#define yychar          gmsh_yychar
#define yydebug         gmsh_yydebug
#define yynerrs         gmsh_yynerrs

/* Copy the first part of user declarations.  */

/* Line 336 of yacc.c  */
Christophe Geuzaine's avatar
Christophe Geuzaine committed
// Gmsh - Copyright (C) 1997-2012 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.

#include <string.h>
#include <stdarg.h>
#include <time.h>
#include "GmshConfig.h"
#include "GmshMessage.h"
#include "fullMatrix.h"
#include "MallocUtils.h"
#include "ListUtils.h"
#include "TreeUtils.h"
#include "StringUtils.h"
#include "Numeric.h"
#include "Context.h"
#include "GModel.h"
#include "Geo.h"
#include "GeoInterpolation.h"
#include "Options.h"
#include "Parser.h"
#include "OpenFile.h"
#include "CommandLine.h"
#include "FunctionManager.h"
#include "ColorTable.h"
#include "OS.h"
#include "CreateFile.h"
#include "gmshSurface.h"
#include "gmshLevelset.h"

#if defined(HAVE_MESH)
#include "Generator.h"
#include "Field.h"
#include "BackgroundMesh.h"
#endif

#if defined(HAVE_POST)
#include "PView.h"
#include "PViewDataList.h"
#endif

#if defined(HAVE_PLUGINS)
#include "PluginManager.h"
#endif

#if defined(HAVE_OPENGL)
#include "drawContext.h"
#endif

// Global parser variables
std::string gmsh_yyname;
int gmsh_yyerrorstate = 0;
int gmsh_yyviewindex = 0;
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
std::map<std::string, gmsh_yysymbol> gmsh_yysymbols;

// Static parser variables (accessible only in this file)
static std::map<std::string, std::string> gmsh_yystringsymbols;
#if defined(HAVE_POST)
static PViewDataList *ViewData;
#endif
static std::vector<double> ViewCoord;
static std::vector<double> *ViewValueList = 0;
static int *ViewNumList = 0;
static ExtrudeParams extr;
static int curPhysDim = 0;
static gmshSurface *myGmshSurface = 0;
#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 const char *LoopControlVariablesNameTab[MAX_RECUR_LOOPS];
static std::map<std::string, std::vector<double> > floatOptions;
static std::map<std::string, std::vector<std::string> > charOptions;

void yyerror(const char *s);
void yymsg(int level, const char *fmt, ...);
void skip_until(const char *skip, const char *until);
int PrintListOfDouble(char *format, List_T *list, char *buffer);
fullMatrix<double> ListOfListOfDouble2Matrix(List_T *list);

/* Line 336 of yacc.c  */
#line 168 "Gmsh.tab.cpp"
# ifndef YY_NULL
#  if defined __cplusplus && 201103L <= __cplusplus
#   define YY_NULL nullptr
#  else
#   define YY_NULL 0
#  endif
# endif

/* Enabling verbose error messages.  */
#ifdef YYERROR_VERBOSE
# undef YYERROR_VERBOSE
# define YYERROR_VERBOSE 1
#else
# define YYERROR_VERBOSE 0
#endif

/* In a future release of Bison, this section will be replaced
   by #include "Gmsh.tab.hpp".  */
#ifndef GMSH_YY_GMSH_TAB_HPP
# define GMSH_YY_GMSH_TAB_HPP
/* Enabling traces.  */
#ifndef YYDEBUG
# define YYDEBUG 0
#endif
#if YYDEBUG
extern int gmsh_yydebug;
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

/* Tokens.  */
#ifndef YYTOKENTYPE
# define YYTOKENTYPE
   /* Put the tokens into the symbol table, so that GDB and other debuggers
      know about them.  */
   enum yytokentype {
     tDOUBLE = 258,
     tSTRING = 259,
     tBIGSTR = 260,
     tEND = 261,
     tAFFECT = 262,
     tDOTS = 263,
     tPi = 264,
     tMPI_Rank = 265,
     tMPI_Size = 266,
     tEuclidian = 267,
     tCoordinates = 268,
     tExp = 269,
     tLog = 270,
     tLog10 = 271,
     tSqrt = 272,
     tSin = 273,
     tAsin = 274,
     tCos = 275,
     tAcos = 276,
     tTan = 277,
     tRand = 278,
     tAtan = 279,
     tAtan2 = 280,
     tSinh = 281,
     tCosh = 282,
     tTanh = 283,
     tFabs = 284,
     tFloor = 285,
     tCeil = 286,
     tFmod = 287,
     tModulo = 288,
     tHypot = 289,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     tList = 290,
     tPrintf = 291,
     tError = 292,
     tSprintf = 293,
     tStrCat = 294,
     tStrPrefix = 295,
     tStrRelative = 296,
     tStrFind = 297,
     tBoundingBox = 298,
     tDraw = 299,
     tToday = 300,
     tSyncModel = 301,
     tCreateTopology = 302,
     tCreateTopologyNoHoles = 303,
     tDistanceFunction = 304,
     tDefineConstant = 305,
     tPoint = 306,
     tCircle = 307,
     tEllipse = 308,
     tLine = 309,
     tSphere = 310,
     tPolarSphere = 311,
     tSurface = 312,
     tSpline = 313,
     tVolume = 314,
     tCharacteristic = 315,
     tLength = 316,
     tParametric = 317,
     tElliptic = 318,
     tRefineMesh = 319,
     tPlane = 320,
     tRuled = 321,
     tTransfinite = 322,
     tComplex = 323,
     tPhysical = 324,
     tCompound = 325,
     tPeriodic = 326,
     tUsing = 327,
     tPlugin = 328,
     tDegenerated = 329,
     tRotate = 330,
     tTranslate = 331,
     tSymmetry = 332,
     tDilate = 333,
     tExtrude = 334,
     tLevelset = 335,
     tRecombine = 336,
     tSmoother = 337,
     tSplit = 338,
     tDelete = 339,
     tCoherence = 340,
     tIntersect = 341,
     tMeshAlgorithm = 342,
     tLayers = 343,
     tHole = 344,
     tAlias = 345,
     tAliasWithOptions = 346,
     tQuadTriDbl = 347,
     tQuadTriSngl = 348,
     tRecombLaterals = 349,
     tTransfQuadTri = 350,
     tText2D = 351,
     tText3D = 352,
     tInterpolationScheme = 353,
     tTime = 354,
     tCombine = 355,
     tBSpline = 356,
     tBezier = 357,
     tNurbs = 358,
     tNurbsOrder = 359,
     tNurbsKnots = 360,
     tColor = 361,
     tColorTable = 362,
     tFor = 363,
     tIn = 364,
     tEndFor = 365,
     tIf = 366,
     tEndIf = 367,
     tExit = 368,
     tAbort = 369,
     tField = 370,
     tReturn = 371,
     tCall = 372,
     tFunction = 373,
     tShow = 374,
     tHide = 375,
     tGetValue = 376,
     tGetEnv = 377,
     tGetString = 378,
     tHomology = 379,
     tCohomology = 380,
     tGMSH_MAJOR_VERSION = 381,
     tGMSH_MINOR_VERSION = 382,
     tGMSH_PATCH_VERSION = 383,
     tAFFECTDIVIDE = 384,
     tAFFECTTIMES = 385,
     tAFFECTMINUS = 386,
     tAFFECTPLUS = 387,
     tOR = 388,
     tAND = 389,
     tNOTEQUAL = 390,
     tEQUAL = 391,
     tGREATEROREQUAL = 392,
     tLESSOREQUAL = 393,
     UNARYPREC = 394,
     tMINUSMINUS = 395,
     tPLUSPLUS = 396
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
   };
#endif
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
typedef union YYSTYPE
/* Line 350 of yacc.c  */
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;
/* Line 350 of yacc.c  */
#line 365 "Gmsh.tab.cpp"
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
# define YYSTYPE_IS_DECLARED 1
#endif

extern YYSTYPE gmsh_yylval;

#ifdef YYPARSE_PARAM
#if defined __STDC__ || defined __cplusplus
int gmsh_yyparse (void *YYPARSE_PARAM);
#else
int gmsh_yyparse ();
#endif
#else /* ! YYPARSE_PARAM */
#if defined __STDC__ || defined __cplusplus
int gmsh_yyparse (void);
#else
int gmsh_yyparse ();
#endif
#endif /* ! YYPARSE_PARAM */

#endif /* !GMSH_YY_GMSH_TAB_HPP  */
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
/* Copy the second part of user declarations.  */


/* Line 353 of yacc.c  */
#line 394 "Gmsh.tab.cpp"
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

#ifdef short
# undef short
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

#ifdef YYTYPE_UINT8
typedef YYTYPE_UINT8 yytype_uint8;
#else
typedef unsigned char yytype_uint8;
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#ifdef YYTYPE_INT8
typedef YYTYPE_INT8 yytype_int8;
#elif (defined __STDC__ || defined __C99__FUNC__ \
     || defined __cplusplus || defined _MSC_VER)
typedef signed char yytype_int8;
#else
typedef short int yytype_int8;
#endif
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#ifdef YYTYPE_UINT16
typedef YYTYPE_UINT16 yytype_uint16;
#else
typedef unsigned short int yytype_uint16;
#endif
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#ifdef YYTYPE_INT16
typedef YYTYPE_INT16 yytype_int16;
#else
typedef short int yytype_int16;
#endif
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#ifndef YYSIZE_T
# ifdef __SIZE_TYPE__
#  define YYSIZE_T __SIZE_TYPE__
# elif defined size_t
#  define YYSIZE_T size_t
# elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \
     || defined __cplusplus || defined _MSC_VER)
#  include <stddef.h> /* INFRINGES ON USER NAME SPACE */
#  define YYSIZE_T size_t
# else
#  define YYSIZE_T unsigned int
# endif
#endif
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#define YYSIZE_MAXIMUM ((YYSIZE_T) -1)

#ifndef YY_
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#  if ENABLE_NLS
#   include <libintl.h> /* INFRINGES ON USER NAME SPACE */
#   define YY_(msgid) dgettext ("bison-runtime", msgid)
#  endif
# endif
# ifndef YY_
#  define YY_(msgid) msgid
# endif
#endif
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
/* Suppress unused-variable warnings by "using" E.  */
#if ! defined lint || defined __GNUC__
# define YYUSE(e) ((void) (e))
#else
# define YYUSE(e) /* empty */
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#endif
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
/* Identity function, used to suppress warnings about constant conditions.  */
#ifndef lint
# define YYID(n) (n)
#else
#if (defined __STDC__ || defined __C99__FUNC__ \
     || defined __cplusplus || defined _MSC_VER)
static int
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#else
static int
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#endif
{
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
#if ! defined yyoverflow || YYERROR_VERBOSE

/* The parser invokes alloca or malloc; define the necessary symbols.  */

# ifdef YYSTACK_USE_ALLOCA
#  if YYSTACK_USE_ALLOCA
#   ifdef __GNUC__
#    define YYSTACK_ALLOC __builtin_alloca
#   elif defined __BUILTIN_VA_ARG_INCR
#    include <alloca.h> /* INFRINGES ON USER NAME SPACE */
#   elif defined _AIX
#    define YYSTACK_ALLOC __alloca
#   elif defined _MSC_VER
#    include <malloc.h> /* INFRINGES ON USER NAME SPACE */
#    define alloca _alloca
#   else
#    define YYSTACK_ALLOC alloca
#    if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     || defined __cplusplus || defined _MSC_VER)
#     include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
      /* Use EXIT_SUCCESS as a witness for stdlib.h.  */
#     ifndef EXIT_SUCCESS
#      define EXIT_SUCCESS 0
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#     endif
#    endif
#   endif
#  endif
# endif

# ifdef YYSTACK_ALLOC
   /* Pacify GCC's `empty if-body' warning.  */
#  define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
#  ifndef YYSTACK_ALLOC_MAXIMUM
    /* The OS might guarantee only one guard page at the bottom of the stack,
       and a page size can be as small as 4096 bytes.  So we cannot safely
       invoke alloca (N) if N exceeds 4096.  Use a slightly smaller number
       to allow for a few compiler-allocated temporary stack slots.  */
#   define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
#  endif
# else
#  define YYSTACK_ALLOC YYMALLOC
#  define YYSTACK_FREE YYFREE
#  ifndef YYSTACK_ALLOC_MAXIMUM
#   define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
#  endif
#  if (defined __cplusplus && ! defined EXIT_SUCCESS \
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
       && ! ((defined YYMALLOC || defined malloc) \
	     && (defined YYFREE || defined free)))
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#   include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
#   ifndef EXIT_SUCCESS
#    define EXIT_SUCCESS 0
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#   endif
#  endif
#  ifndef YYMALLOC
#   define YYMALLOC malloc
#   if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     || defined __cplusplus || defined _MSC_VER)
void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
#   endif
#  endif
#  ifndef YYFREE
#   define YYFREE free
#   if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
     || defined __cplusplus || defined _MSC_VER)
void free (void *); /* INFRINGES ON USER NAME SPACE */
#   endif
#  endif
# endif
#endif /* ! defined yyoverflow || YYERROR_VERBOSE */


#if (! defined yyoverflow \
     && (! defined __cplusplus \
	 || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

/* A type that is properly aligned for any stack member.  */
union yyalloc
{
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

/* The size of the maximum gap between one aligned stack and the next.  */
# define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)

/* The size of an array large to enough to hold all stacks, each with
   N elements.  */
# define YYSTACK_BYTES(N) \
     ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \
      + YYSTACK_GAP_MAXIMUM)

# define YYCOPY_NEEDED 1
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

/* Relocate STACK from its old location to the new one.  The
   local variables YYSIZE and YYSTACKSIZE give the old and new number of
   elements in the stack, and YYPTR gives the new location of the
   stack.  Advance YYPTR to a properly aligned location for the next
   stack.  */
# define YYSTACK_RELOCATE(Stack_alloc, Stack)				\
    do									\
      {									\
	YYSIZE_T yynewbytes;						\
	YYCOPY (&yyptr->Stack_alloc, Stack, yysize);			\
	Stack = &yyptr->Stack_alloc;					\
	yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
	yyptr += yynewbytes / sizeof (*yyptr);				\
      }									\
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
    while (YYID (0))
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

#endif
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

#if defined YYCOPY_NEEDED && YYCOPY_NEEDED
/* Copy COUNT objects from SRC to DST.  The source and destination do
   not overlap.  */
# ifndef YYCOPY
#  if defined __GNUC__ && 1 < __GNUC__
#   define YYCOPY(Dst, Src, Count) \
      __builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src)))
#  else
#   define YYCOPY(Dst, Src, Count)              \
      do                                        \
        {                                       \
          YYSIZE_T yyi;                         \
          for (yyi = 0; yyi < (Count); yyi++)   \
            (Dst)[yyi] = (Src)[yyi];            \
        }                                       \
      while (YYID (0))
#  endif
# endif
#endif /* !YYCOPY_NEEDED */

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
/* YYFINAL -- State number of the termination state.  */
#define YYFINAL  5
/* YYLAST -- Last index in YYTABLE.  */
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

/* YYNTOKENS -- Number of terminals.  */
#define YYNTOKENS  162
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
/* YYNNTS -- Number of nonterminals.  */
#define YYNNTS  92
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
/* YYNRULES -- Number of rules.  */
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
/* YYNRULES -- Number of states.  */
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX.  */
#define YYUNDEFTOK  2
#define YYMAXUTOK   396
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

#define YYTRANSLATE(YYX)						\
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
  ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)

/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX.  */
static const yytype_uint8 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,   147,     2,   157,     2,   146,     2,     2,
     152,   153,   144,   142,   158,   143,   156,   145,     2,     2,
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     138,     2,   139,   133,     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,   154,     2,   155,   151,     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,     2,   159,     2,   160,   161,     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,     2,     1,     2,     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,   108,   109,   110,   111,   112,   113,   114,
     115,   116,   117,   118,   119,   120,   121,   122,   123,   124,
     125,   126,   127,   128,   129,   130,   131,   132,   134,   135,
     136,   137,   140,   141,   148,   149,   150
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
#if YYDEBUG
/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
   YYRHS.  */
static const yytype_uint16 yyprhs[] =
{
       0,     0,     3,     5,     8,     9,    12,    14,    16,    18,
      20,    22,    24,    26,    28,    30,    32,    34,    36,    38,
      40,    42,    44,    46,    48,    51,    57,    63,    71,    79,
      87,    97,   104,   111,   118,   119,   122,   125,   128,   131,
     134,   136,   140,   142,   146,   147,   148,   159,   161,   165,
     166,   180,   182,   186,   187,   203,   212,   227,   228,   235,
     237,   239,   241,   243,   245,   247,   249,   255,   260,   267,
     275,   283,   293,   303,   307,   314,   319,   326,   336,   343,
     353,   359,   368,   377,   389,   396,   406,   412,   420,   430,
     440,   452,   460,   470,   480,   481,   483,   484,   488,   494,
     495,   505,   511,   512,   522,   526,   532,   533,   536,   540,
     546,   550,   551,   554,   558,   562,   568,   570,   572,   573,
     579,   580,   583,   591,   592,   602,   609,   617,   622,   630,
     639,   648,   656,   664,   676,   685,   694,   695,   705,   714,
     724,   728,   733,   744,   752,   760,   769,   778,   791,   792,
     802,   811,   819,   828,   829,   839,   845,   857,   863,   873,
     883,   888,   898,   908,   910,   912,   913,   916,   923,   930,
     937,   944,   953,   964,   979,   996,  1009,  1018,  1027,  1034,
    1049,  1054,  1061,  1068,  1072,  1077,  1083,  1087,  1091,  1096,
    1101,  1105,  1113,  1121,  1125,  1133,  1137,  1140,  1143,  1146,
    1149,  1165,  1168,  1171,  1174,  1177,  1184,  1193,  1202,  1213,
    1215,  1218,  1220,  1224,  1229,  1231,  1237,  1249,  1263,  1264,
    1272,  1273,  1287,  1288,  1304,  1305,  1312,  1321,  1330,  1339,
    1352,  1365,  1378,  1393,  1408,  1423,  1424,  1437,  1438,  1451,
    1452,  1465,  1466,  1483,  1484,  1501,  1502,  1519,  1520,  1539,
    1540,  1559,  1560,  1579,  1581,  1584,  1590,  1598,  1608,  1611,
    1614,  1618,  1621,  1625,  1635,  1642,  1643,  1647,  1648,  1650,
    1651,  1654,  1655,  1658,  1666,  1673,  1682,  1688,  1692,  1700,
    1706,  1713,  1720,  1733,  1744,  1755,  1766,  1777,  1780,  1784,
    1791,  1793,  1795,  1798,  1804,  1812,  1823,  1825,  1829,  1832,
    1835,  1838,  1842,  1846,  1850,  1854,  1858,  1862,  1866,  1870,
    1874,  1878,  1882,  1886,  1890,  1894,  1900,  1905,  1910,  1915,
    1920,  1925,  1930,  1935,  1940,  1945,  1950,  1957,  1962,  1967,
    1972,  1977,  1982,  1987,  1994,  2001,  2008,  2013,  2018,  2023,
    2028,  2033,  2038,  2043,  2048,  2053,  2058,  2063,  2070,  2075,
    2080,  2085,  2090,  2095,  2100,  2107,  2114,  2121,  2126,  2128,
    2130,  2132,  2134,  2136,  2138,  2140,  2142,  2148,  2153,  2158,
    2161,  2167,  2171,  2178,  2183,  2191,  2198,  2205,  2207,  2210,
    2213,  2217,  2221,  2233,  2243,  2251,  2259,  2261,  2265,  2267,
    2269,  2272,  2276,  2281,  2287,  2289,  2291,  2294,  2298,  2302,
    2308,  2313,  2316,  2319,  2322,  2325,  2331,  2337,  2343,  2349,
    2351,  2353,  2357,  2361,  2366,  2373,  2380,  2382,  2384,  2388,
    2392,  2402,  2410,  2412,  2418,  2422,  2429,  2431,  2435,  2437,
    2439,  2443,  2450,  2452,  2454,  2459,  2466,  2473,  2478,  2483,
    2488,  2495,  2497
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed

Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
/* YYRHS -- A `-1'-separated list of the rules' RHS.  */
static const yytype_int16 yyrhs[] =
{
     163,     0,    -1,   164,    -1,     1,     6,    -1,    -1,   164,
     165,    -1,   168,    -1,   167,    -1,   186,    -1,   199,    -1,
     204,    -1,   208,    -1,   209,    -1,   210,    -1,   213,    -1,
     233,    -1,   234,    -1,   235,    -1,   236,    -1,   212,    -1,
     211,    -1,   207,    -1,   238,    -1,   139,    -1,   139,   139,
      -1,    36,   152,     5,   153,     6,    -1,    37,   152,     5,
     153,     6,    -1,    36,   152,     5,   153,   166,   251,     6,
      -1,    36,   152,     5,   158,   247,   153,     6,    -1,    37,
     152,     5,   158,   247,   153,     6,    -1,    36,   152,     5,
     158,   247,   153,   166,   251,     6,    -1,     4,     5,   159,
     169,   160,     6,    -1,    90,     4,   154,   239,   155,     6,
      -1,    91,     4,   154,   239,   155,     6,    -1,    -1,   169,
     172,    -1,   169,   176,    -1,   169,   179,    -1,   169,   181,
      -1,   169,   182,    -1,   239,    -1,   170,   158,   239,    -1,
     239,    -1,   171,   158,   239,    -1,    -1,    -1,     4,   173,
     152,   170,   153,   174,   159,   171,   160,     6,    -1,   251,
      -1,   175,   158,   251,    -1,    -1,    96,   152,   239,   158,
     239,   158,   239,   153,   177,   159,   175,   160,     6,    -1,
     251,    -1,   178,   158,   251,    -1,    -1,    97,   152,   239,
     158,   239,   158,   239,   158,   239,   153,   180,   159,   178,
     160,     6,    -1,    98,   159,   243,   160,   159,   243,   160,
       6,    -1,    98,   159,   243,   160,   159,   243,   160,   159,
     243,   160,   159,   243,   160,     6,    -1,    -1,    99,   183,
     159,   171,   160,     6,    -1,     7,    -1,   132,    -1,   131,
      -1,   130,    -1,   129,    -1,   150,    -1,   149,    -1,    50,
     154,   188,   155,     6,    -1,     4,   184,   244,     6,    -1,
       4,   154,   155,   184,   244,     6,    -1,     4,   154,   239,
     155,   184,   239,     6,    -1,     4,   152,   239,   153,   184,
     239,     6,    -1,     4,   154,   159,   247,   160,   155,   184,
     244,     6,    -1,     4,   152,   159,   247,   160,   153,   184,
     244,     6,    -1,     4,   185,     6,    -1,     4,   154,   239,
     155,   185,     6,    -1,     4,     7,   252,     6,    -1,     4,
     156,     4,     7,   252,     6,    -1,     4,   154,   239,   155,
     156,     4,     7,   252,     6,    -1,     4,   156,     4,   184,
     239,     6,    -1,     4,   154,   239,   155,   156,     4,   184,
     239,     6,    -1,     4,   156,     4,   185,     6,    -1,     4,
     154,   239,   155,   156,     4,   185,     6,    -1,     4,   156,
     106,   156,     4,     7,   248,     6,    -1,     4,   154,   239,
     155,   156,   106,   156,     4,     7,   248,     6,    -1,     4,
     156,   107,     7,   249,     6,    -1,     4,   154,   239,   155,
     156,   107,     7,   249,     6,    -1,     4,   115,     7,   239,
       6,    -1,   115,   154,   239,   155,     7,     4,     6,    -1,
     115,   154,   239,   155,   156,     4,     7,   239,     6,    -1,
     115,   154,   239,   155,   156,     4,     7,   252,     6,    -1,
     115,   154,   239,   155,   156,     4,     7,   159,   247,   160,
       6,    -1,   115,   154,   239,   155,   156,     4,     6,    -1,
      73,   152,     4,   153,   156,     4,     7,   239,     6,    -1,
      73,   152,     4,   153,   156,     4,     7,   252,     6,    -1,
      -1,   158,    -1,    -1,   188,   187,     4,    -1,   188,   187,
       4,     7,   239,    -1,    -1,   188,   187,     4,     7,   159,
     239,   189,   192,   160,    -1,   188,   187,     4,     7,   252,
      -1,    -1,   188,   187,     4,     7,   159,   252,   190,   194,
     160,    -1,   239,     7,   252,    -1,   191,   158,   239,     7,
     252,    -1,    -1,   192,   193,    -1,   158,     4,   244,    -1,
     158,     4,   159,   191,   160,    -1,   158,     4,     5,    -1,
      -1,   194,   195,    -1,   158,     4,   239,    -1,   158,     4,
       5,    -1,   158,     4,   159,   253,   160,    -1,   239,    -1,
     252,    -1,    -1,   109,    55,   159,   239,   160,    -1,    -1,
      65,   241,    -1,    51,   152,   239,   153,     7,   241,     6,
      -1,    -1,    69,    51,   200,   152,   196,   153,     7,   244,
       6,    -1,    60,    61,   244,     7,   239,     6,    -1,    54,
     152,   239,   153,     7,   244,     6,    -1,    74,    54,   244,
       6,    -1,    58,   152,   239,   153,     7,   244,     6,    -1,
      52,   152,   239,   153,     7,   244,   198,     6,    -1,    53,
     152,   239,   153,     7,   244,   198,     6,    -1,   101,   152,
     239,   153,     7,   244,     6,    -1,   102,   152,   239,   153,
       7,   244,     6,    -1,   103,   152,   239,   153,     7,   244,
     105,   244,   104,   239,     6,    -1,    54,     4,   152,   239,
     153,     7,   244,     6,    -1,    70,    54,   152,   239,   153,
       7,   244,     6,    -1,    -1,    69,    54,   201,   152,   196,
     153,     7,   244,     6,    -1,    65,    57,   152,   239,   153,
       7,   244,     6,    -1,    66,    57,   152,   239,   153,     7,
     244,   197,     6,    -1,    12,    13,     6,    -1,    13,    57,
     239,     6,    -1,    62,    57,   152,   239,   153,     7,     5,
       5,     5,     6,    -1,    55,   152,   239,   153,     7,   244,
       6,    -1,    56,   152,   239,   153,     7,   244,     6,    -1,
      57,     4,   152,   239,   153,     7,   244,     6,    -1,    70,
      57,   152,   239,   153,     7,   244,     6,    -1,    70,    57,
     152,   239,   153,     7,   244,     4,   159,   243,   160,     6,
      -1,    -1,    69,    57,   202,   152,   196,   153,     7,   244,
       6,    -1,    68,    59,   152,   239,   153,     7,   244,     6,
      -1,    59,   152,   239,   153,     7,   244,     6,    -1,    70,
      59,   152,   239,   153,     7,   244,     6,    -1,    -1,    69,
      59,   203,   152,   196,   153,     7,   244,     6,    -1,    76,
     241,   159,   205,   160,    -1,    75,   159,   241,   158,   241,
     158,   239,   160,   159,   205,   160,    -1,    77,   241,   159,
     205,   160,    -1,    78,   159,   241,   158,   239,   160,   159,
     205,   160,    -1,    78,   159,   241,   158,   241,   160,   159,
     205,   160,    -1,     4,   159,   205,   160,    -1,    86,    54,
     159,   247,   160,    57,   159,   239,   160,    -1,    83,    54,
     152,   239,   153,   159,   247,   160,     6,    -1,   206,    -1,
     204,    -1,    -1,   206,   199,    -1,   206,    51,   159,   247,
     160,     6,    -1,   206,    54,   159,   247,   160,     6,    -1,
     206,    57,   159,   247,   160,     6,    -1,   206,    59,   159,
     247,   160,     6,    -1,    80,    65,   152,   239,   153,     7,
     244,     6,    -1,    80,    51,   152,   239,   153,     7,   159,
     243,   160,     6,    -1,    80,    65,   152,   239,   153,     7,
     159,   241,   158,   241,   158,   247,   160,     6,    -1,    80,
      65,   152,   239,   153,     7,   159,   241,   158,   241,   158,
     241,   158,   247,   160,     6,    -1,    80,    55,   152,   239,
     153,     7,   159,   241,   158,   247,   160,     6,    -1,    80,
       4,   152,   239,   153,     7,   244,     6,    -1,    80,     4,
     152,   239,   153,     7,     5,     6,    -1,    80,     4,   159,
     239,   160,     6,    -1,    80,     4,   152,   239,   153,     7,
     159,   241,   158,   241,   158,   247,   160,     6,    -1,    84,
     159,   206,   160,    -1,    84,   115,   154,   239,   155,     6,
      -1,    84,     4,   154,   239,   155,     6,    -1,    84,     4,
       6,    -1,    84,     4,     4,     6,    -1,   106,   248,   159,
     206,   160,    -1,   119,     5,     6,    -1,   120,     5,     6,
      -1,   119,   159,   206,   160,    -1,   120,   159,   206,   160,
      -1,     4,   252,     6,    -1,     4,     4,   154,   239,   155,
     251,     6,    -1,     4,     4,     4,   154,   239,   155,     6,
      -1,     4,   239,     6,    -1,    73,   152,     4,   153,   156,
       4,     6,    -1,   100,     4,     6,    -1,   113,     6,    -1,
     114,     6,    -1,    46,     6,    -1,    43,     6,    -1,    43,
     159,   239,   158,   239,   158,   239,   158,   239,   158,   239,
     158,   239,   160,     6,    -1,    44,     6,    -1,    47,     6,
      -1,    48,     6,    -1,    64,     6,    -1,   108,   152,   239,
       8,   239,   153,    -1,   108,   152,   239,     8,   239,     8,
     239,   153,    -1,   108,     4,   109,   159,   239,     8,   239,
     160,    -1,   108,     4,   109,   159,   239,     8,   239,     8,
     239,   160,    -1,   110,    -1,   118,     4,    -1,   116,    -1,
     117,     4,     6,    -1,   111,   152,   239,   153,    -1,   112,
      -1,    79,   241,   159,   206,   160,    -1,    79,   159,   241,
     158,   241,   158,   239,   160,   159,   206,   160,    -1,    79,
     159,   241,   158,   241,   158,   241,   158,   239,   160,   159,
     206,   160,    -1,    -1,    79,   241,   159,   206,   214,   227,
     160,    -1,    -1,    79,   159,   241,   158,   241,   158,   239,
     160,   159,   206,   215,   227,   160,    -1,    -1,    79,   159,
     241,   158,   241,   158,   241,   158,   239,   160,   159,   206,
     216,   227,   160,    -1,    -1,    79,   159,   206,   217,   227,
     160,    -1,    79,    51,   159,   239,   158,   241,   160,     6,
      -1,    79,    54,   159,   239,   158,   241,   160,     6,    -1,
      79,    57,   159,   239,   158,   241,   160,     6,    -1,    79,
      51,   159,   239,   158,   241,   158,   241,   158,   239,   160,
       6,    -1,    79,    54,   159,   239,   158,   241,   158,   241,
     158,   239,   160,     6,    -1,    79,    57,   159,   239,   158,
     241,   158,   241,   158,   239,   160,     6,    -1,    79,    51,
     159,   239,   158,   241,   158,   241,   158,   241,   158,   239,
     160,     6,    -1,    79,    54,   159,   239,   158,   241,   158,
     241,   158,   241,   158,   239,   160,     6,    -1,    79,    57,
     159,   239,   158,   241,   158,   241,   158,   241,   158,   239,
     160,     6,    -1,    -1,    79,    51,   159,   239,   158,   241,
     160,   218,   159,   227,   160,     6,    -1,    -1,    79,    54,
     159,   239,   158,   241,   160,   219,   159,   227,   160,     6,
      -1,    -1,    79,    57,   159,   239,   158,   241,   160,   220,
     159,   227,   160,     6,    -1,    -1,    79,    51,   159,   239,
     158,   241,   158,   241,   158,   239,   160,   221,   159,   227,
     160,     6,    -1,    -1,    79,    54,   159,   239,   158,   241,
     158,   241,   158,   239,   160,   222,   159,   227,   160,     6,
      -1,    -1,    79,    57,   159,   239,   158,   241,   158,   241,
     158,   239,   160,   223,   159,   227,   160,     6,    -1,    -1,
      79,    51,   159,   239,   158,   241,   158,   241,   158,   241,
     158,   239,   160,   224,   159,   227,   160,     6,    -1,    -1,
      79,    54,   159,   239,   158,   241,   158,   241,   158,   241,
     158,   239,   160,   225,   159,   227,   160,     6,    -1,    -1,
      79,    57,   159,   239,   158,   241,   158,   241,   158,   241,
     158,   239,   160,   226,   159,   227,   160,     6,    -1,   228,
      -1,   227,   228,    -1,    88,   159,   239,   160,     6,    -1,
      88,   159,   244,   158,   244,   160,     6,    -1,    88,   159,
     244,   158,   244,   158,   244,   160,     6,    -1,    81,     6,
      -1,    92,     6,    -1,    92,    94,     6,    -1,    93,     6,
      -1,    93,    94,     6,    -1,    89,   152,   239,   153,     7,
     244,    72,   239,     6,    -1,    72,     4,   154,   239,   155,
       6,    -1,    -1,    72,     4,   239,    -1,    -1,     4,    -1,
      -1,     7,   244,    -1,    -1,     7,   239,    -1,    67,    54,
     245,     7,   239,   229,     6,    -1,    67,    57,   245,   231,
     230,     6,    -1,    63,    57,   159,   239,   160,     7,   244,
       6,    -1,    67,    59,   245,   231,     6,    -1,    95,   245,
       6,    -1,    87,    57,   159,   247,   160,   239,     6,    -1,
      81,    57,   245,   232,     6,    -1,    82,    57,   244,     7,
     239,     6,    -1,    71,    54,   244,     7,   244,     6,    -1,
      71,    57,   239,   159,   247,   160,     7,   239,   159,   247,
     160,     6,    -1,    51,   159,   247,   160,   109,    57,   159,
     239,   160,     6,    -1,    54,   159,   247,   160,   109,    57,
     159,   239,   160,     6,    -1,    54,   159,   247,   160,   109,
      59,   159,   239,   160,     6,    -1,    57,   159,   247,   160,
     109,    59,   159,   239,   160,     6,    -1,    85,     6,    -1,
      85,     4,     6,    -1,    85,    51,   159,   247,   160,     6,
      -1,   124,    -1,   125,    -1,   237,     6,    -1,   237,   159,
     244,   160,     6,    -1,   237,   159,   244,   158,   244,   160,
       6,    -1,   237,   152,   244,   153,   159,   244,   158,   244,
     160,     6,    -1,   240,    -1,   152,   239,   153,    -1,   143,
     239,    -1,   142,   239,    -1,   147,   239,    -1,   239,   143,
     239,    -1,   239,   142,   239,    -1,   239,   144,   239,    -1,
     239,   145,   239,    -1,   239,   146,   239,    -1,   239,   151,
     239,    -1,   239,   138,   239,    -1,   239,   139,   239,    -1,
     239,   141,   239,    -1,   239,   140,   239,    -1,   239,   137,
     239,    -1,   239,   136,   239,    -1,   239,   135,   239,    -1,
     239,   134,   239,    -1,   239,   133,   239,     8,   239,    -1,
      14,   152,   239,   153,    -1,    15,   152,   239,   153,    -1,
      16,   152,   239,   153,    -1,    17,   152,   239,   153,    -1,
      18,   152,   239,   153,    -1,    19,   152,   239,   153,    -1,
      20,   152,   239,   153,    -1,    21,   152,   239,   153,    -1,
      22,   152,   239,   153,    -1,    24,   152,   239,   153,    -1,
      25,   152,   239,   158,   239,   153,    -1,    26,   152,   239,
     153,    -1,    27,   152,   239,   153,    -1,    28,   152,   239,
     153,    -1,    29,   152,   239,   153,    -1,    30,   152,   239,
     153,    -1,    31,   152,   239,   153,    -1,    32,   152,   239,
     158,   239,   153,    -1,    33,   152,   239,   158,   239,   153,
      -1,    34,   152,   239,   158,   239,   153,    -1,    23,   152,
     239,   153,    -1,    14,   154,   239,   155,    -1,    15,   154,
     239,   155,    -1,    16,   154,   239,   155,    -1,    17,   154,
     239,   155,    -1,    18,   154,   239,   155,    -1,    19,   154,
     239,   155,    -1,    20,   154,   239,   155,    -1,    21,   154,
     239,   155,    -1,    22,   154,   239,   155,    -1,    24,   154,
     239,   155,    -1,    25,   154,   239,   158,   239,   155,    -1,
      26,   154,   239,   155,    -1,    27,   154,   239,   155,    -1,
      28,   154,   239,   155,    -1,    29,   154,   239,   155,    -1,
      30,   154,   239,   155,    -1,    31,   154,   239,   155,    -1,
      32,   154,   239,   158,   239,   155,    -1,    33,   154,   239,
     158,   239,   155,    -1,    34,   154,   239,   158,   239,   155,
      -1,    23,   154,   239,   155,    -1,     3,    -1,     9,    -1,
      10,    -1,    11,    -1,   126,    -1,   127,    -1,   128,    -1,
       4,    -1,     4,   161,   159,   239,   160,    -1,     4,   154,
     239,   155,    -1,   157,     4,   154,   155,    -1,     4,   185,
      -1,     4,   154,   239,   155,   185,    -1,     4,   156,     4,
      -1,     4,   154,   239,   155,   156,     4,    -1,     4,   156,
       4,   185,    -1,     4,   154,   239,   155,   156,     4,   185,
      -1,   121,   152,   251,   158,   239,   153,    -1,    42,   152,
     251,   158,   251,   153,    -1,   242,    -1,   143,   241,    -1,
     142,   241,    -1,   241,   143,   241,    -1,   241,   142,   241,
      -1,   159,   239,   158,   239,   158,   239,   158,   239,   158,
     239,   160,    -1,   159,   239,   158,   239,   158,   239,   158,
     239,   160,    -1,   159,   239,   158,   239,   158,   239,   160,
      -1,   152,   239,   158,   239,   158,   239,   153,    -1,   244,
      -1,   243,   158,   244,    -1,   239,    -1,   246,    -1,   159,
     160,    -1,   159,   247,   160,    -1,   143,   159,   247,   160,
      -1,   239,   144,   159,   247,   160,    -1,   244,    -1,     5,
      -1,   143,   246,    -1,   239,   144,   246,    -1,   239,     8,
     239,    -1,   239,     8,   239,     8,   239,    -1,    51,   159,
     239,   160,    -1,    51,     5,    -1,    54,     5,    -1,    57,
       5,    -1,    59,     5,    -1,    69,    51,   159,   247,   160,
      -1,    69,    54,   159,   247,   160,    -1,    69,    57,   159,
     247,   160,    -1,    69,    59,   159,   247,   160,    -1,   204,
      -1,   213,    -1,     4,   154,   155,    -1,     4,   152,   153,
      -1,    35,   154,     4,   155,    -1,     4,   154,   159,   247,
     160,   155,    -1,     4,   152,   159,   247,   160,   153,    -1,
     239,    -1,   246,    -1,   247,   158,   239,    -1,   247,   158,
     246,    -1,   159,   239,   158,   239,   158,   239,   158,   239,
     160,    -1,   159,   239,   158,   239,   158,   239,   160,    -1,
       4,    -1,     4,   156,   106,   156,     4,    -1,   159,   250,
     160,    -1,     4,   154,   239,   155,   156,   107,    -1,   248,
      -1,   250,   158,   248,    -1,   252,    -1,     4,    -1,     4,
     156,     4,    -1,     4,   154,   239,   155,   156,     4,    -1,
       5,    -1,    45,    -1,   122,   152,   251,   153,    -1,   123,
     152,   251,   158,   251,   153,    -1,    39,   152,   251,   158,
     251,   153,    -1,    40,   152,   251,   153,    -1,    41,   152,
     251,   153,    -1,    38,   152,   251,   153,    -1,    38,   152,
     251,   158,   247,   153,    -1,   251,    -1,   253,   158,   251,
      -1
Christophe Geuzaine's avatar
 
Christophe Geuzaine committed
/* YYRLINE[YYN] -- source line where rule number YYN was defined.  */
static const yytype_uint16 yyrline[] =
{
       0,   164,   164,   165,   170,   172,   176,   177,   178,   179,
     180,   181,   182,   183,   184,   185,   186,   187,   188,   189,
     190,   191,   192,   196,   200,   207,   212,   217,   231,   244,
     257,   285,   299,   310,   325,   330,   331,   332,   333,   334,
     338,   340,   345,   347,   353,   457,   352,   475,   482,   493,
     492,   510,   517,   528,   527,   544,   561,   584,   583,   597,
     598,   599,   600,   601,   605,   606,   612,   614,   676,   706,
     741,   775,   823,   870,   885,   901,   910,   916,   925,   943,
     961,   970,   982,   987,   995,  1015,  1038,  1049,  1057,  1079,
    1102,  1128,  1149,  1161,  1175,  1175,  1177,  1179,  1190,  1202,
    1201,  1213,  1225,  1224,  1239,  1245,  1252,  1253,  1257,  1268,
    1283,  1293,  1294,  1299,  1307,  1316,  1335,  1339,  1350,  1353,
    1366,  1369,  1379,  1403,  1402,  1422,  1444,  1462,  1483,  1501,
    1531,  1561,  1579,  1597,  1623,  1641,  1660,  1659,  1682,  1700,