LCOV - code coverage report
Current view: top level - src - parse_mdl.cpp (source / functions) Hit Total Coverage
Test: qucs-core-0.0.19 Code Coverage Lines: 0 349 0.0 %
Date: 2015-01-05 16:01:02 Functions: 0 10 0.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 325 0.0 %

           Branch data     Line data    Source code
       1                 :            : /* A Bison parser, made by GNU Bison 3.0.2.  */
       2                 :            : 
       3                 :            : /* Bison implementation for Yacc-like parsers in C
       4                 :            : 
       5                 :            :    Copyright (C) 1984, 1989-1990, 2000-2013 Free Software Foundation, Inc.
       6                 :            : 
       7                 :            :    This program is free software: you can redistribute it and/or modify
       8                 :            :    it under the terms of the GNU General Public License as published by
       9                 :            :    the Free Software Foundation, either version 3 of the License, or
      10                 :            :    (at your option) any later version.
      11                 :            : 
      12                 :            :    This program is distributed in the hope that it will be useful,
      13                 :            :    but WITHOUT ANY WARRANTY; without even the implied warranty of
      14                 :            :    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      15                 :            :    GNU General Public License for more details.
      16                 :            : 
      17                 :            :    You should have received a copy of the GNU General Public License
      18                 :            :    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
      19                 :            : 
      20                 :            : /* As a special exception, you may create a larger work that contains
      21                 :            :    part or all of the Bison parser skeleton and distribute that work
      22                 :            :    under terms of your choice, so long as that work isn't itself a
      23                 :            :    parser generator using the skeleton or a modified version thereof
      24                 :            :    as a parser skeleton.  Alternatively, if you modify or redistribute
      25                 :            :    the parser skeleton itself, you may (at your option) remove this
      26                 :            :    special exception, which will cause the skeleton and the resulting
      27                 :            :    Bison output files to be licensed under the GNU General Public
      28                 :            :    License without this special exception.
      29                 :            : 
      30                 :            :    This special exception was added by the Free Software Foundation in
      31                 :            :    version 2.2 of Bison.  */
      32                 :            : 
      33                 :            : /* C LALR(1) parser skeleton written by Richard Stallman, by
      34                 :            :    simplifying the original so-called "semantic" parser.  */
      35                 :            : 
      36                 :            : /* All symbols defined below should begin with yy or YY, to avoid
      37                 :            :    infringing on user name space.  This should be done even for local
      38                 :            :    variables, as they might otherwise be expanded by user macros.
      39                 :            :    There are some unavoidable exceptions within include files to
      40                 :            :    define necessary library symbols; they are noted "INFRINGES ON
      41                 :            :    USER NAME SPACE" below.  */
      42                 :            : 
      43                 :            : /* Identify Bison output.  */
      44                 :            : #define YYBISON 1
      45                 :            : 
      46                 :            : /* Bison version.  */
      47                 :            : #define YYBISON_VERSION "3.0.2"
      48                 :            : 
      49                 :            : /* Skeleton name.  */
      50                 :            : #define YYSKELETON_NAME "yacc.c"
      51                 :            : 
      52                 :            : /* Pure parsers.  */
      53                 :            : #define YYPURE 0
      54                 :            : 
      55                 :            : /* Push parsers.  */
      56                 :            : #define YYPUSH 0
      57                 :            : 
      58                 :            : /* Pull parsers.  */
      59                 :            : #define YYPULL 1
      60                 :            : 
      61                 :            : 
      62                 :            : /* Substitute the variable and function names.  */
      63                 :            : #define yyparse         mdl_parse
      64                 :            : #define yylex           mdl_lex
      65                 :            : #define yyerror         mdl_error
      66                 :            : #define yydebug         mdl_debug
      67                 :            : #define yynerrs         mdl_nerrs
      68                 :            : 
      69                 :            : #define yylval          mdl_lval
      70                 :            : #define yychar          mdl_char
      71                 :            : 
      72                 :            : /* Copy the first part of user declarations.  */
      73                 :            : #line 3 "parse_mdl.y" /* yacc.c:339  */
      74                 :            : 
      75                 :            : /*
      76                 :            :  * parse_mdl.y - parser for an IC-CAP MDL data file
      77                 :            :  *
      78                 :            :  * Copyright (C) 2006 Stefan Jahn <stefan@lkcc.org>
      79                 :            :  *
      80                 :            :  * This is free software; you can redistribute it and/or modify
      81                 :            :  * it under the terms of the GNU General Public License as published by
      82                 :            :  * the Free Software Foundation; either version 2, or (at your option)
      83                 :            :  * any later version.
      84                 :            :  *
      85                 :            :  * This software is distributed in the hope that it will be useful,
      86                 :            :  * but WITHOUT ANY WARRANTY; without even the implied warranty of
      87                 :            :  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      88                 :            :  * GNU General Public License for more details.
      89                 :            :  *
      90                 :            :  * You should have received a copy of the GNU General Public License
      91                 :            :  * along with this package; see the file COPYING.  If not, write to
      92                 :            :  * the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
      93                 :            :  * Boston, MA 02110-1301, USA.
      94                 :            :  *
      95                 :            :  * $Id$
      96                 :            :  *
      97                 :            :  */
      98                 :            : 
      99                 :            : #if HAVE_CONFIG_H
     100                 :            : # include <config.h>
     101                 :            : #endif
     102                 :            : 
     103                 :            : #include <stdio.h>
     104                 :            : #include <stdlib.h>
     105                 :            : #include <string.h>
     106                 :            : #include <ctype.h>
     107                 :            : 
     108                 :            : #define YYERROR_VERBOSE 42
     109                 :            : #define YYDEBUG 1
     110                 :            : #define YYMAXDEPTH 1000000
     111                 :            : 
     112                 :            : #define __NOEXTENSIONS__ 1
     113                 :            : 
     114                 :            : #include "object.h"
     115                 :            : #include "complex.h"
     116                 :            : #include "vector.h"
     117                 :            : #include "check_mdl.h"
     118                 :            : 
     119                 :            : using namespace qucs;
     120                 :            : 
     121                 :            : 
     122                 :            : #line 123 "parse_mdl.cpp" /* yacc.c:339  */
     123                 :            : 
     124                 :            : # ifndef YY_NULLPTR
     125                 :            : #  if defined __cplusplus && 201103L <= __cplusplus
     126                 :            : #   define YY_NULLPTR nullptr
     127                 :            : #  else
     128                 :            : #   define YY_NULLPTR 0
     129                 :            : #  endif
     130                 :            : # endif
     131                 :            : 
     132                 :            : /* Enabling verbose error messages.  */
     133                 :            : #ifdef YYERROR_VERBOSE
     134                 :            : # undef YYERROR_VERBOSE
     135                 :            : # define YYERROR_VERBOSE 1
     136                 :            : #else
     137                 :            : # define YYERROR_VERBOSE 0
     138                 :            : #endif
     139                 :            : 
     140                 :            : /* In a future release of Bison, this section will be replaced
     141                 :            :    by #include "tokens_mdl.h".  */
     142                 :            : #ifndef YY_MDL_TOKENS_MDL_H_INCLUDED
     143                 :            : # define YY_MDL_TOKENS_MDL_H_INCLUDED
     144                 :            : /* Debug traces.  */
     145                 :            : #ifndef YYDEBUG
     146                 :            : # define YYDEBUG 0
     147                 :            : #endif
     148                 :            : #if YYDEBUG
     149                 :            : extern int mdl_debug;
     150                 :            : #endif
     151                 :            : 
     152                 :            : /* Token type.  */
     153                 :            : #ifndef YYTOKENTYPE
     154                 :            : # define YYTOKENTYPE
     155                 :            :   enum yytokentype
     156                 :            :   {
     157                 :            :     LINK = 258,
     158                 :            :     Identifier = 259,
     159                 :            :     String = 260,
     160                 :            :     InvalidCharacter = 261,
     161                 :            :     Real = 262,
     162                 :            :     t_LINK = 263,
     163                 :            :     t_VIEW = 264,
     164                 :            :     t_TABLE = 265,
     165                 :            :     t_PSTABLE = 266,
     166                 :            :     t_CNTABLE = 267,
     167                 :            :     t_OPTIMEDIT = 268,
     168                 :            :     t_BLKEDIT = 269,
     169                 :            :     t_HYPTABLE = 270,
     170                 :            :     t_ELEMENT = 271,
     171                 :            :     t_DATA = 272,
     172                 :            :     t_DATASET = 273,
     173                 :            :     t_DATASIZE = 274,
     174                 :            :     t_POINT = 275,
     175                 :            :     t_MEMBER = 276,
     176                 :            :     t_LIST = 277,
     177                 :            :     t_PLOTOPTIMIZEROPT = 278,
     178                 :            :     t_PLOTOPTIMIZERTRACESET = 279,
     179                 :            :     t_PLOTOPTIMIZERTRACEREGSET = 280,
     180                 :            :     t_PLOTOPTIMIZERTRACENATREGSET = 281,
     181                 :            :     t_PLOTERROR = 282,
     182                 :            :     t_TYPE = 283,
     183                 :            :     t_CIRCUITDECK = 284,
     184                 :            :     t_PARAM = 285,
     185                 :            :     t_RANGE = 286,
     186                 :            :     t_CONNPAIR = 287,
     187                 :            :     t_CALDATA = 288,
     188                 :            :     t_CALSET = 289,
     189                 :            :     t_TERM = 290,
     190                 :            :     t_APPLIC = 291,
     191                 :            :     t_SUBAPP = 292,
     192                 :            :     t_EDITSIZE = 293,
     193                 :            :     t_PLOTSIZE = 294,
     194                 :            :     t_OPTRANGE = 295
     195                 :            :   };
     196                 :            : #endif
     197                 :            : /* Tokens.  */
     198                 :            : #define LINK 258
     199                 :            : #define Identifier 259
     200                 :            : #define String 260
     201                 :            : #define InvalidCharacter 261
     202                 :            : #define Real 262
     203                 :            : #define t_LINK 263
     204                 :            : #define t_VIEW 264
     205                 :            : #define t_TABLE 265
     206                 :            : #define t_PSTABLE 266
     207                 :            : #define t_CNTABLE 267
     208                 :            : #define t_OPTIMEDIT 268
     209                 :            : #define t_BLKEDIT 269
     210                 :            : #define t_HYPTABLE 270
     211                 :            : #define t_ELEMENT 271
     212                 :            : #define t_DATA 272
     213                 :            : #define t_DATASET 273
     214                 :            : #define t_DATASIZE 274
     215                 :            : #define t_POINT 275
     216                 :            : #define t_MEMBER 276
     217                 :            : #define t_LIST 277
     218                 :            : #define t_PLOTOPTIMIZEROPT 278
     219                 :            : #define t_PLOTOPTIMIZERTRACESET 279
     220                 :            : #define t_PLOTOPTIMIZERTRACEREGSET 280
     221                 :            : #define t_PLOTOPTIMIZERTRACENATREGSET 281
     222                 :            : #define t_PLOTERROR 282
     223                 :            : #define t_TYPE 283
     224                 :            : #define t_CIRCUITDECK 284
     225                 :            : #define t_PARAM 285
     226                 :            : #define t_RANGE 286
     227                 :            : #define t_CONNPAIR 287
     228                 :            : #define t_CALDATA 288
     229                 :            : #define t_CALSET 289
     230                 :            : #define t_TERM 290
     231                 :            : #define t_APPLIC 291
     232                 :            : #define t_SUBAPP 292
     233                 :            : #define t_EDITSIZE 293
     234                 :            : #define t_PLOTSIZE 294
     235                 :            : #define t_OPTRANGE 295
     236                 :            : 
     237                 :            : /* Value type.  */
     238                 :            : #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
     239                 :            : typedef union YYSTYPE YYSTYPE;
     240                 :            : union YYSTYPE
     241                 :            : {
     242                 :            : #line 93 "parse_mdl.y" /* yacc.c:355  */
     243                 :            : 
     244                 :            :   char * ident;
     245                 :            :   double f;
     246                 :            :   struct mdl_point_t * point;
     247                 :            :   struct mdl_dataset_t * dset;
     248                 :            :   struct mdl_datasize_t * dsize;
     249                 :            :   struct mdl_link_t * link;
     250                 :            :   struct mdl_data_t * data;
     251                 :            :   struct mdl_dcontent_t * dcontent;
     252                 :            :   struct mdl_lcontent_t * lcontent;
     253                 :            :   struct mdl_element_t * element;
     254                 :            :   struct mdl_hyptable_t * hyptable;
     255                 :            :   struct mdl_table_t * table;
     256                 :            : 
     257                 :            : #line 258 "parse_mdl.cpp" /* yacc.c:355  */
     258                 :            : };
     259                 :            : # define YYSTYPE_IS_TRIVIAL 1
     260                 :            : # define YYSTYPE_IS_DECLARED 1
     261                 :            : #endif
     262                 :            : 
     263                 :            : 
     264                 :            : extern YYSTYPE mdl_lval;
     265                 :            : 
     266                 :            : int mdl_parse (void);
     267                 :            : 
     268                 :            : #endif /* !YY_MDL_TOKENS_MDL_H_INCLUDED  */
     269                 :            : 
     270                 :            : /* Copy the second part of user declarations.  */
     271                 :            : 
     272                 :            : #line 273 "parse_mdl.cpp" /* yacc.c:358  */
     273                 :            : 
     274                 :            : #ifdef short
     275                 :            : # undef short
     276                 :            : #endif
     277                 :            : 
     278                 :            : #ifdef YYTYPE_UINT8
     279                 :            : typedef YYTYPE_UINT8 yytype_uint8;
     280                 :            : #else
     281                 :            : typedef unsigned char yytype_uint8;
     282                 :            : #endif
     283                 :            : 
     284                 :            : #ifdef YYTYPE_INT8
     285                 :            : typedef YYTYPE_INT8 yytype_int8;
     286                 :            : #else
     287                 :            : typedef signed char yytype_int8;
     288                 :            : #endif
     289                 :            : 
     290                 :            : #ifdef YYTYPE_UINT16
     291                 :            : typedef YYTYPE_UINT16 yytype_uint16;
     292                 :            : #else
     293                 :            : typedef unsigned short int yytype_uint16;
     294                 :            : #endif
     295                 :            : 
     296                 :            : #ifdef YYTYPE_INT16
     297                 :            : typedef YYTYPE_INT16 yytype_int16;
     298                 :            : #else
     299                 :            : typedef short int yytype_int16;
     300                 :            : #endif
     301                 :            : 
     302                 :            : #ifndef YYSIZE_T
     303                 :            : # ifdef __SIZE_TYPE__
     304                 :            : #  define YYSIZE_T __SIZE_TYPE__
     305                 :            : # elif defined size_t
     306                 :            : #  define YYSIZE_T size_t
     307                 :            : # elif ! defined YYSIZE_T
     308                 :            : #  include <stddef.h> /* INFRINGES ON USER NAME SPACE */
     309                 :            : #  define YYSIZE_T size_t
     310                 :            : # else
     311                 :            : #  define YYSIZE_T unsigned int
     312                 :            : # endif
     313                 :            : #endif
     314                 :            : 
     315                 :            : #define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
     316                 :            : 
     317                 :            : #ifndef YY_
     318                 :            : # if defined YYENABLE_NLS && YYENABLE_NLS
     319                 :            : #  if ENABLE_NLS
     320                 :            : #   include <libintl.h> /* INFRINGES ON USER NAME SPACE */
     321                 :            : #   define YY_(Msgid) dgettext ("bison-runtime", Msgid)
     322                 :            : #  endif
     323                 :            : # endif
     324                 :            : # ifndef YY_
     325                 :            : #  define YY_(Msgid) Msgid
     326                 :            : # endif
     327                 :            : #endif
     328                 :            : 
     329                 :            : #ifndef YY_ATTRIBUTE
     330                 :            : # if (defined __GNUC__                                               \
     331                 :            :       && (2 < __GNUC__ || (__GNUC__ == 2 && 96 <= __GNUC_MINOR__)))  \
     332                 :            :      || defined __SUNPRO_C && 0x5110 <= __SUNPRO_C
     333                 :            : #  define YY_ATTRIBUTE(Spec) __attribute__(Spec)
     334                 :            : # else
     335                 :            : #  define YY_ATTRIBUTE(Spec) /* empty */
     336                 :            : # endif
     337                 :            : #endif
     338                 :            : 
     339                 :            : #ifndef YY_ATTRIBUTE_PURE
     340                 :            : # define YY_ATTRIBUTE_PURE   YY_ATTRIBUTE ((__pure__))
     341                 :            : #endif
     342                 :            : 
     343                 :            : #ifndef YY_ATTRIBUTE_UNUSED
     344                 :            : # define YY_ATTRIBUTE_UNUSED YY_ATTRIBUTE ((__unused__))
     345                 :            : #endif
     346                 :            : 
     347                 :            : #if !defined _Noreturn \
     348                 :            :      && (!defined __STDC_VERSION__ || __STDC_VERSION__ < 201112)
     349                 :            : # if defined _MSC_VER && 1200 <= _MSC_VER
     350                 :            : #  define _Noreturn __declspec (noreturn)
     351                 :            : # else
     352                 :            : #  define _Noreturn YY_ATTRIBUTE ((__noreturn__))
     353                 :            : # endif
     354                 :            : #endif
     355                 :            : 
     356                 :            : /* Suppress unused-variable warnings by "using" E.  */
     357                 :            : #if ! defined lint || defined __GNUC__
     358                 :            : # define YYUSE(E) ((void) (E))
     359                 :            : #else
     360                 :            : # define YYUSE(E) /* empty */
     361                 :            : #endif
     362                 :            : 
     363                 :            : #if defined __GNUC__ && 407 <= __GNUC__ * 100 + __GNUC_MINOR__
     364                 :            : /* Suppress an incorrect diagnostic about yylval being uninitialized.  */
     365                 :            : # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \
     366                 :            :     _Pragma ("GCC diagnostic push") \
     367                 :            :     _Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")\
     368                 :            :     _Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"")
     369                 :            : # define YY_IGNORE_MAYBE_UNINITIALIZED_END \
     370                 :            :     _Pragma ("GCC diagnostic pop")
     371                 :            : #else
     372                 :            : # define YY_INITIAL_VALUE(Value) Value
     373                 :            : #endif
     374                 :            : #ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
     375                 :            : # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
     376                 :            : # define YY_IGNORE_MAYBE_UNINITIALIZED_END
     377                 :            : #endif
     378                 :            : #ifndef YY_INITIAL_VALUE
     379                 :            : # define YY_INITIAL_VALUE(Value) /* Nothing. */
     380                 :            : #endif
     381                 :            : 
     382                 :            : 
     383                 :            : #if ! defined yyoverflow || YYERROR_VERBOSE
     384                 :            : 
     385                 :            : /* The parser invokes alloca or malloc; define the necessary symbols.  */
     386                 :            : 
     387                 :            : # ifdef YYSTACK_USE_ALLOCA
     388                 :            : #  if YYSTACK_USE_ALLOCA
     389                 :            : #   ifdef __GNUC__
     390                 :            : #    define YYSTACK_ALLOC __builtin_alloca
     391                 :            : #   elif defined __BUILTIN_VA_ARG_INCR
     392                 :            : #    include <alloca.h> /* INFRINGES ON USER NAME SPACE */
     393                 :            : #   elif defined _AIX
     394                 :            : #    define YYSTACK_ALLOC __alloca
     395                 :            : #   elif defined _MSC_VER
     396                 :            : #    include <malloc.h> /* INFRINGES ON USER NAME SPACE */
     397                 :            : #    define alloca _alloca
     398                 :            : #   else
     399                 :            : #    define YYSTACK_ALLOC alloca
     400                 :            : #    if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS
     401                 :            : #     include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
     402                 :            :       /* Use EXIT_SUCCESS as a witness for stdlib.h.  */
     403                 :            : #     ifndef EXIT_SUCCESS
     404                 :            : #      define EXIT_SUCCESS 0
     405                 :            : #     endif
     406                 :            : #    endif
     407                 :            : #   endif
     408                 :            : #  endif
     409                 :            : # endif
     410                 :            : 
     411                 :            : # ifdef YYSTACK_ALLOC
     412                 :            :    /* Pacify GCC's 'empty if-body' warning.  */
     413                 :            : #  define YYSTACK_FREE(Ptr) do { /* empty */; } while (0)
     414                 :            : #  ifndef YYSTACK_ALLOC_MAXIMUM
     415                 :            :     /* The OS might guarantee only one guard page at the bottom of the stack,
     416                 :            :        and a page size can be as small as 4096 bytes.  So we cannot safely
     417                 :            :        invoke alloca (N) if N exceeds 4096.  Use a slightly smaller number
     418                 :            :        to allow for a few compiler-allocated temporary stack slots.  */
     419                 :            : #   define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
     420                 :            : #  endif
     421                 :            : # else
     422                 :            : #  define YYSTACK_ALLOC YYMALLOC
     423                 :            : #  define YYSTACK_FREE YYFREE
     424                 :            : #  ifndef YYSTACK_ALLOC_MAXIMUM
     425                 :            : #   define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
     426                 :            : #  endif
     427                 :            : #  if (defined __cplusplus && ! defined EXIT_SUCCESS \
     428                 :            :        && ! ((defined YYMALLOC || defined malloc) \
     429                 :            :              && (defined YYFREE || defined free)))
     430                 :            : #   include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
     431                 :            : #   ifndef EXIT_SUCCESS
     432                 :            : #    define EXIT_SUCCESS 0
     433                 :            : #   endif
     434                 :            : #  endif
     435                 :            : #  ifndef YYMALLOC
     436                 :            : #   define YYMALLOC malloc
     437                 :            : #   if ! defined malloc && ! defined EXIT_SUCCESS
     438                 :            : void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
     439                 :            : #   endif
     440                 :            : #  endif
     441                 :            : #  ifndef YYFREE
     442                 :            : #   define YYFREE free
     443                 :            : #   if ! defined free && ! defined EXIT_SUCCESS
     444                 :            : void free (void *); /* INFRINGES ON USER NAME SPACE */
     445                 :            : #   endif
     446                 :            : #  endif
     447                 :            : # endif
     448                 :            : #endif /* ! defined yyoverflow || YYERROR_VERBOSE */
     449                 :            : 
     450                 :            : 
     451                 :            : #if (! defined yyoverflow \
     452                 :            :      && (! defined __cplusplus \
     453                 :            :          || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
     454                 :            : 
     455                 :            : /* A type that is properly aligned for any stack member.  */
     456                 :            : union yyalloc
     457                 :            : {
     458                 :            :   yytype_int16 yyss_alloc;
     459                 :            :   YYSTYPE yyvs_alloc;
     460                 :            : };
     461                 :            : 
     462                 :            : /* The size of the maximum gap between one aligned stack and the next.  */
     463                 :            : # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
     464                 :            : 
     465                 :            : /* The size of an array large to enough to hold all stacks, each with
     466                 :            :    N elements.  */
     467                 :            : # define YYSTACK_BYTES(N) \
     468                 :            :      ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \
     469                 :            :       + YYSTACK_GAP_MAXIMUM)
     470                 :            : 
     471                 :            : # define YYCOPY_NEEDED 1
     472                 :            : 
     473                 :            : /* Relocate STACK from its old location to the new one.  The
     474                 :            :    local variables YYSIZE and YYSTACKSIZE give the old and new number of
     475                 :            :    elements in the stack, and YYPTR gives the new location of the
     476                 :            :    stack.  Advance YYPTR to a properly aligned location for the next
     477                 :            :    stack.  */
     478                 :            : # define YYSTACK_RELOCATE(Stack_alloc, Stack)                           \
     479                 :            :     do                                                                  \
     480                 :            :       {                                                                 \
     481                 :            :         YYSIZE_T yynewbytes;                                            \
     482                 :            :         YYCOPY (&yyptr->Stack_alloc, Stack, yysize);                    \
     483                 :            :         Stack = &yyptr->Stack_alloc;                                    \
     484                 :            :         yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
     485                 :            :         yyptr += yynewbytes / sizeof (*yyptr);                          \
     486                 :            :       }                                                                 \
     487                 :            :     while (0)
     488                 :            : 
     489                 :            : #endif
     490                 :            : 
     491                 :            : #if defined YYCOPY_NEEDED && YYCOPY_NEEDED
     492                 :            : /* Copy COUNT objects from SRC to DST.  The source and destination do
     493                 :            :    not overlap.  */
     494                 :            : # ifndef YYCOPY
     495                 :            : #  if defined __GNUC__ && 1 < __GNUC__
     496                 :            : #   define YYCOPY(Dst, Src, Count) \
     497                 :            :       __builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src)))
     498                 :            : #  else
     499                 :            : #   define YYCOPY(Dst, Src, Count)              \
     500                 :            :       do                                        \
     501                 :            :         {                                       \
     502                 :            :           YYSIZE_T yyi;                         \
     503                 :            :           for (yyi = 0; yyi < (Count); yyi++)   \
     504                 :            :             (Dst)[yyi] = (Src)[yyi];            \
     505                 :            :         }                                       \
     506                 :            :       while (0)
     507                 :            : #  endif
     508                 :            : # endif
     509                 :            : #endif /* !YYCOPY_NEEDED */
     510                 :            : 
     511                 :            : /* YYFINAL -- State number of the termination state.  */
     512                 :            : #define YYFINAL  6
     513                 :            : /* YYLAST -- Last index in YYTABLE.  */
     514                 :            : #define YYLAST   180
     515                 :            : 
     516                 :            : /* YYNTOKENS -- Number of terminals.  */
     517                 :            : #define YYNTOKENS  43
     518                 :            : /* YYNNTS -- Number of nonterminals.  */
     519                 :            : #define YYNNTS  56
     520                 :            : /* YYNRULES -- Number of rules.  */
     521                 :            : #define YYNRULES  100
     522                 :            : /* YYNSTATES -- Number of states.  */
     523                 :            : #define YYNSTATES  218
     524                 :            : 
     525                 :            : /* YYTRANSLATE[YYX] -- Symbol number corresponding to YYX as returned
     526                 :            :    by yylex, with out-of-bounds checking.  */
     527                 :            : #define YYUNDEFTOK  2
     528                 :            : #define YYMAXUTOK   295
     529                 :            : 
     530                 :            : #define YYTRANSLATE(YYX)                                                \
     531                 :            :   ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
     532                 :            : 
     533                 :            : /* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM
     534                 :            :    as returned by yylex, without out-of-bounds checking.  */
     535                 :            : static const yytype_uint8 yytranslate[] =
     536                 :            : {
     537                 :            :        0,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     538                 :            :        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     539                 :            :        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     540                 :            :        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     541                 :            :        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     542                 :            :        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     543                 :            :        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     544                 :            :        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     545                 :            :        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     546                 :            :        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     547                 :            :        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     548                 :            :        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     549                 :            :        2,     2,     2,    41,     2,    42,     2,     2,     2,     2,
     550                 :            :        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     551                 :            :        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     552                 :            :        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     553                 :            :        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     554                 :            :        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     555                 :            :        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     556                 :            :        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     557                 :            :        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     558                 :            :        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     559                 :            :        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     560                 :            :        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     561                 :            :        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     562                 :            :        2,     2,     2,     2,     2,     2,     1,     2,     3,     4,
     563                 :            :        5,     6,     7,     8,     9,    10,    11,    12,    13,    14,
     564                 :            :       15,    16,    17,    18,    19,    20,    21,    22,    23,    24,
     565                 :            :       25,    26,    27,    28,    29,    30,    31,    32,    33,    34,
     566                 :            :       35,    36,    37,    38,    39,    40
     567                 :            : };
     568                 :            : 
     569                 :            : #if YYDEBUG
     570                 :            :   /* YYRLINE[YYN] -- Source line where rule number YYN was defined.  */
     571                 :            : static const yytype_uint16 yyrline[] =
     572                 :            : {
     573                 :            :        0,   125,   125,   130,   131,   138,   141,   144,   149,   150,
     574                 :            :      161,   164,   169,   170,   181,   184,   185,   190,   191,   194,
     575                 :            :      195,   200,   203,   206,   209,   212,   215,   220,   225,   232,
     576                 :            :      233,   244,   247,   250,   253,   256,   259,   262,   265,   268,
     577                 :            :      271,   274,   277,   280,   285,   290,   293,   298,   299,   310,
     578                 :            :      311,   312,   315,   316,   321,   327,   338,   341,   342,   349,
     579                 :            :      356,   362,   370,   377,   382,   387,   393,   402,   409,   415,
     580                 :            :      419,   425,   431,   436,   442,   448,   452,   453,   458,   463,
     581                 :            :      468,   474,   480,   488,   494,   504,   510,   521,   528,   534,
     582                 :            :      539,   546,   556,   566,   572,   577,   582,   589,   596,   604,
     583                 :            :      612
     584                 :            : };
     585                 :            : #endif
     586                 :            : 
     587                 :            : #if YYDEBUG || YYERROR_VERBOSE || 0
     588                 :            : /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
     589                 :            :    First, the terminals, then, starting at YYNTOKENS, nonterminals.  */
     590                 :            : static const char *const yytname[] =
     591                 :            : {
     592                 :            :   "$end", "error", "$undefined", "LINK", "Identifier", "String",
     593                 :            :   "InvalidCharacter", "Real", "t_LINK", "t_VIEW", "t_TABLE", "t_PSTABLE",
     594                 :            :   "t_CNTABLE", "t_OPTIMEDIT", "t_BLKEDIT", "t_HYPTABLE", "t_ELEMENT",
     595                 :            :   "t_DATA", "t_DATASET", "t_DATASIZE", "t_POINT", "t_MEMBER", "t_LIST",
     596                 :            :   "t_PLOTOPTIMIZEROPT", "t_PLOTOPTIMIZERTRACESET",
     597                 :            :   "t_PLOTOPTIMIZERTRACEREGSET", "t_PLOTOPTIMIZERTRACENATREGSET",
     598                 :            :   "t_PLOTERROR", "t_TYPE", "t_CIRCUITDECK", "t_PARAM", "t_RANGE",
     599                 :            :   "t_CONNPAIR", "t_CALDATA", "t_CALSET", "t_TERM", "t_APPLIC", "t_SUBAPP",
     600                 :            :   "t_EDITSIZE", "t_PLOTSIZE", "t_OPTRANGE", "'{'", "'}'", "$accept",
     601                 :            :   "Input", "LinkList", "TableContent", "TableContentList",
     602                 :            :   "HypTableContent", "HypTableContentList", "ConnTableContent",
     603                 :            :   "ConnTableContentList", "OptEditContent", "OptEditContentList",
     604                 :            :   "LinkContent", "LinkContentList", "DataContent", "DataContentList",
     605                 :            :   "PSContent", "PSContentList", "DSContent", "Point", "PointList",
     606                 :            :   "ELEMENT_Line", "VIEW_Line", "TABLE_Definition", "LINK_Definition",
     607                 :            :   "DATA_Definition", "PSTABLE_Definition", "CIRCUITDECK_Definition",
     608                 :            :   "BLKEDIT_Definition", "CNTABLE_Definition", "OPTIMEDIT_Definition",
     609                 :            :   "CALSET_Definition", "CalSetContent", "CALDATA_Definition",
     610                 :            :   "CalDataContentList", "CalDataContent", "TERM_Line", "APPLIC_Line",
     611                 :            :   "SUBAPP_Line", "HYPTABLE_Definition", "DATASET_Definition",
     612                 :            :   "DATASIZE_Line", "TYPE_Line", "POINT_Line", "LIST_Line",
     613                 :            :   "PLOTOPTIMIZEROPT_Line", "PLOTOPTIMIZERTRACESET_Line",
     614                 :            :   "PLOTOPTIMIZERTRACEREGSET_Line", "PLOTOPTIMIZERTRACENATREGSET_Line",
     615                 :            :   "PLOTERROR_Line", "EDITSIZE_Line", "PLOTSIZE_Line", "MEMBER_Line",
     616                 :            :   "PARAM_Line", "RANGE_Line", "OPTRANGE_Line", "CONNPAIR_Line", YY_NULLPTR
     617                 :            : };
     618                 :            : #endif
     619                 :            : 
     620                 :            : # ifdef YYPRINT
     621                 :            : /* YYTOKNUM[NUM] -- (External) token number corresponding to the
     622                 :            :    (internal) symbol number NUM (which must be that of a token).  */
     623                 :            : static const yytype_uint16 yytoknum[] =
     624                 :            : {
     625                 :            :        0,   256,   257,   258,   259,   260,   261,   262,   263,   264,
     626                 :            :      265,   266,   267,   268,   269,   270,   271,   272,   273,   274,
     627                 :            :      275,   276,   277,   278,   279,   280,   281,   282,   283,   284,
     628                 :            :      285,   286,   287,   288,   289,   290,   291,   292,   293,   294,
     629                 :            :      295,   123,   125
     630                 :            : };
     631                 :            : # endif
     632                 :            : 
     633                 :            : #define YYPACT_NINF -174
     634                 :            : 
     635                 :            : #define yypact_value_is_default(Yystate) \
     636                 :            :   (!!((Yystate) == (-174)))
     637                 :            : 
     638                 :            : #define YYTABLE_NINF -1
     639                 :            : 
     640                 :            : #define yytable_value_is_error(Yytable_value) \
     641                 :            :   0
     642                 :            : 
     643                 :            :   /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
     644                 :            :      STATE-NUM.  */
     645                 :            : static const yytype_int16 yypact[] =
     646                 :            : {
     647                 :            :       11,     7,    20,  -174,    11,    19,  -174,  -174,   -18,     9,
     648                 :            :       25,    -2,    -5,    34,    36,    42,    50,     9,    14,  -174,
     649                 :            :     -174,  -174,  -174,  -174,  -174,  -174,  -174,    51,    -3,    17,
     650                 :            :       39,    55,    56,    60,    62,  -174,  -174,    65,    30,    18,
     651                 :            :     -174,    67,    69,    35,    70,    76,    41,    79,    80,    81,
     652                 :            :       82,    84,    43,    85,    86,    87,    39,    47,  -174,  -174,
     653                 :            :     -174,  -174,  -174,  -174,  -174,  -174,  -174,  -174,  -174,  -174,
     654                 :            :     -174,  -174,  -174,  -174,  -174,  -174,    88,  -174,  -174,    18,
     655                 :            :       28,    18,    49,  -174,  -174,  -174,    57,    58,     1,    59,
     656                 :            :       63,    73,    89,    92,    94,    98,    99,    66,    68,   103,
     657                 :            :      104,  -174,  -174,   105,    71,   109,   110,  -174,  -174,   -24,
     658                 :            :       90,     1,    74,  -174,  -174,    75,    16,   114,    77,    93,
     659                 :            :     -174,   115,   118,   119,  -174,  -174,   121,  -174,  -174,  -174,
     660                 :            :     -174,  -174,   122,   124,   125,   126,   -24,    91,  -174,  -174,
     661                 :            :     -174,   127,    90,    95,  -174,  -174,  -174,  -174,    16,    96,
     662                 :            :     -174,  -174,   128,  -174,   130,   106,  -174,   131,   135,   134,
     663                 :            :      100,   138,   139,   140,   141,  -174,  -174,   142,  -174,  -174,
     664                 :            :     -174,  -174,   143,  -174,   144,   106,    93,  -174,   147,   148,
     665                 :            :      145,  -174,  -174,  -174,   149,   150,  -174,   151,   152,  -174,
     666                 :            :      106,   155,   156,   157,  -174,  -174,  -174,   158,  -174,  -174,
     667                 :            :     -174,   153,   159,   160,   161,   123,  -174,   107,  -174,   136,
     668                 :            :      162,   120,   136,   106,  -174,  -174,  -174,  -174
     669                 :            : };
     670                 :            : 
     671                 :            :   /* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM.
     672                 :            :      Performed when YYTABLE does not specify something else to do.  Zero
     673                 :            :      means the default is an error.  */
     674                 :            : static const yytype_uint8 yydefact[] =
     675                 :            : {
     676                 :            :        3,     0,     0,     2,     3,     0,     1,     4,     0,    29,
     677                 :            :        0,     0,     0,     0,     0,     0,     0,    29,     0,    21,
     678                 :            :       26,    27,    28,    22,    23,    24,    25,     0,     0,     0,
     679                 :            :       47,     0,     0,     0,     0,    30,    66,     0,     0,     8,
     680                 :            :       65,     0,     0,     0,     0,     0,     0,     0,     0,     0,
     681                 :            :        0,     0,     0,     0,     0,     0,    47,     0,    38,    39,
     682                 :            :       46,    45,    40,    41,    42,    43,    44,    31,    32,    33,
     683                 :            :       34,    35,    36,    37,    96,    87,     0,    81,    62,     8,
     684                 :            :        0,     8,     0,     6,     5,     7,     0,     0,    19,     0,
     685                 :            :        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
     686                 :            :        0,    48,    67,     0,     0,     0,     0,     9,    63,    52,
     687                 :            :       15,    19,     0,    17,    18,     0,    12,     0,     0,     0,
     688                 :            :       88,    90,     0,     0,    93,    69,     0,    94,    95,    80,
     689                 :            :       64,    61,     0,     0,     0,     0,    52,     0,    49,    50,
     690                 :            :       51,     0,    15,     0,    14,    20,    72,    70,    12,     0,
     691                 :            :       11,    10,     0,    83,     0,    57,    89,     0,     0,     0,
     692                 :            :        0,    60,     0,     0,     0,    53,    68,     0,    16,    71,
     693                 :            :       13,    82,     0,    85,     0,    57,    54,    56,     0,     0,
     694                 :            :        0,    73,    59,    97,     0,     0,   100,     0,     0,    58,
     695                 :            :       57,     0,     0,     0,    98,    99,    84,     0,    55,    91,
     696                 :            :       92,     0,     0,     0,     0,     0,    86,     0,    74,    76,
     697                 :            :        0,     0,    76,    57,    79,    75,    77,    78
     698                 :            : };
     699                 :            : 
     700                 :            :   /* YYPGOTO[NTERM-NUM].  */
     701                 :            : static const yytype_int16 yypgoto[] =
     702                 :            : {
     703                 :            :     -174,  -174,   166,  -174,   -38,  -174,   -17,  -174,    21,  -174,
     704                 :            :       61,  -174,   163,  -174,   117,  -174,    38,  -174,  -174,  -173,
     705                 :            :     -111,    -9,    -8,     4,  -174,  -174,  -174,  -174,  -174,  -174,
     706                 :            :     -174,  -174,  -174,   -37,  -174,  -174,  -174,  -174,  -174,  -174,
     707                 :            :     -174,     0,  -174,  -174,  -174,  -174,  -174,  -174,  -174,  -174,
     708                 :            :     -174,  -174,  -174,  -174,  -174,  -174
     709                 :            : };
     710                 :            : 
     711                 :            :   /* YYDEFGOTO[NTERM-NUM].  */
     712                 :            : static const yytype_int16 yydefgoto[] =
     713                 :            : {
     714                 :            :       -1,     2,     3,    81,    82,   148,   149,   142,   143,   111,
     715                 :            :      112,    17,    18,    56,    57,   136,   137,   118,   175,   176,
     716                 :            :       83,    84,    85,     4,    22,    59,    60,    61,    62,    63,
     717                 :            :       64,   160,   208,   211,   212,   213,    23,    24,    65,    66,
     718                 :            :      119,   155,   177,    25,    67,    68,    69,    70,    71,    72,
     719                 :            :       73,    26,   138,   139,   140,   144
     720                 :            : };
     721                 :            : 
     722                 :            :   /* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM.  If
     723                 :            :      positive, shift that token.  If negative, reduce the rule whose
     724                 :            :      number is the opposite.  If YYTABLE_NINF, syntax error.  */
     725                 :            : static const yytype_uint8 yytable[] =
     726                 :            : {
     727                 :            :       19,    20,   189,    28,    38,   150,   133,   134,    19,    20,
     728                 :            :       10,    11,     1,    21,     1,     5,   135,   198,    10,    11,
     729                 :            :        6,    21,    58,     9,     8,    10,    12,    10,    11,    27,
     730                 :            :       13,    14,    80,   105,    80,   106,    30,   150,    39,    29,
     731                 :            :      217,   104,    31,   107,    32,    15,    16,    33,    58,    11,
     732                 :            :       41,    42,    43,    44,    45,    34,    36,    46,    37,    40,
     733                 :            :       74,    75,    47,    48,    49,    50,    51,    76,    52,    77,
     734                 :            :       78,    79,    86,    53,    87,    89,    88,    54,    55,   113,
     735                 :            :      114,    90,    91,    92,    97,    93,    94,    95,    96,   102,
     736                 :            :       98,   108,   117,    99,   100,   103,   120,   121,   109,   110,
     737                 :            :      115,   122,   113,   114,   116,   123,   124,   151,   125,   126,
     738                 :            :      127,   128,   129,   130,   131,   132,   146,   147,   152,   153,
     739                 :            :      156,   154,   141,   157,   158,   159,   174,   161,   162,   163,
     740                 :            :      164,   170,   167,   166,   173,   172,   178,   169,   171,   151,
     741                 :            :      179,   180,   181,   182,   183,   184,   185,   186,   209,   193,
     742                 :            :      187,   188,   191,   192,   194,   195,   207,   203,   196,   197,
     743                 :            :      199,   200,   215,   168,   201,   202,   204,   205,   206,   214,
     744                 :            :        7,   210,   145,   101,   165,   216,   190,     0,     0,     0,
     745                 :            :       35
     746                 :            : };
     747                 :            : 
     748                 :            : static const yytype_int16 yycheck[] =
     749                 :            : {
     750                 :            :        9,     9,   175,     5,     7,   116,    30,    31,    17,    17,
     751                 :            :        9,    10,     3,     9,     3,     8,    40,   190,     9,    10,
     752                 :            :        0,    17,    30,    41,     5,     9,    17,     9,    10,     4,
     753                 :            :       21,    22,    16,     5,    16,     7,    41,   148,    41,    41,
     754                 :            :      213,    79,     8,    81,     8,    36,    37,     5,    56,    10,
     755                 :            :       11,    12,    13,    14,    15,     5,    42,    18,     7,    42,
     756                 :            :        5,     5,    23,    24,    25,    26,    27,     7,    29,     7,
     757                 :            :        5,    41,     5,    34,     5,     5,    41,    38,    39,    88,
     758                 :            :       88,     5,    41,     4,    41,     5,     5,     5,     4,    42,
     759                 :            :        5,    42,    19,     7,     7,     7,     7,     5,    41,    41,
     760                 :            :       41,     7,   111,   111,    41,     7,     7,   116,    42,    41,
     761                 :            :        7,     7,     7,    42,     5,     5,    42,    42,     4,    42,
     762                 :            :        5,    28,    32,     5,     5,     4,    20,     5,     4,     4,
     763                 :            :        4,   148,     5,    42,     4,     7,     5,    42,    42,   148,
     764                 :            :        5,     7,    42,     5,     5,     5,     5,     5,    41,     4,
     765                 :            :        7,     7,     5,     5,     5,     5,    33,     4,     7,     7,
     766                 :            :        5,     5,    42,   142,     7,     7,     7,     7,     7,     7,
     767                 :            :        4,    35,   111,    56,   136,   212,   176,    -1,    -1,    -1,
     768                 :            :       17
     769                 :            : };
     770                 :            : 
     771                 :            :   /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
     772                 :            :      symbol of state STATE-NUM.  */
     773                 :            : static const yytype_uint8 yystos[] =
     774                 :            : {
     775                 :            :        0,     3,    44,    45,    66,     8,     0,    45,     5,    41,
     776                 :            :        9,    10,    17,    21,    22,    36,    37,    54,    55,    64,
     777                 :            :       65,    66,    67,    79,    80,    86,    94,     4,     5,    41,
     778                 :            :       41,     8,     8,     5,     5,    55,    42,     7,     7,    41,
     779                 :            :       42,    11,    12,    13,    14,    15,    18,    23,    24,    25,
     780                 :            :       26,    27,    29,    34,    38,    39,    56,    57,    65,    68,
     781                 :            :       69,    70,    71,    72,    73,    81,    82,    87,    88,    89,
     782                 :            :       90,    91,    92,    93,     5,     5,     7,     7,     5,    41,
     783                 :            :       16,    46,    47,    63,    64,    65,     5,     5,    41,     5,
     784                 :            :        5,    41,     4,     5,     5,     5,     4,    41,     5,     7,
     785                 :            :        7,    57,    42,     7,    47,     5,     7,    47,    42,    41,
     786                 :            :       41,    52,    53,    64,    65,    41,    41,    19,    60,    83,
     787                 :            :        7,     5,     7,     7,     7,    42,    41,     7,     7,     7,
     788                 :            :       42,     5,     5,    30,    31,    40,    58,    59,    95,    96,
     789                 :            :       97,    32,    50,    51,    98,    53,    42,    42,    48,    49,
     790                 :            :       63,    64,     4,    42,    28,    84,     5,     5,     5,     4,
     791                 :            :       74,     5,     4,     4,     4,    59,    42,     5,    51,    42,
     792                 :            :       49,    42,     7,     4,    20,    61,    62,    85,     5,     5,
     793                 :            :        7,    42,     5,     5,     5,     5,     5,     7,     7,    62,
     794                 :            :       84,     5,     5,     4,     5,     5,     7,     7,    62,     5,
     795                 :            :        5,     7,     7,     4,     7,     7,     7,    33,    75,    41,
     796                 :            :       35,    76,    77,    78,     7,    42,    76,    62
     797                 :            : };
     798                 :            : 
     799                 :            :   /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives.  */
     800                 :            : static const yytype_uint8 yyr1[] =
     801                 :            : {
     802                 :            :        0,    43,    44,    45,    45,    46,    46,    46,    47,    47,
     803                 :            :       48,    48,    49,    49,    50,    51,    51,    52,    52,    53,
     804                 :            :       53,    54,    54,    54,    54,    54,    54,    54,    54,    55,
     805                 :            :       55,    56,    56,    56,    56,    56,    56,    56,    56,    56,
     806                 :            :       56,    56,    56,    56,    56,    56,    56,    57,    57,    58,
     807                 :            :       58,    58,    59,    59,    60,    60,    61,    62,    62,    63,
     808                 :            :       63,    63,    64,    65,    65,    65,    66,    67,    68,    69,
     809                 :            :       70,    71,    72,    73,    74,    75,    76,    76,    77,    78,
     810                 :            :       79,    80,    81,    82,    83,    84,    85,    86,    87,    88,
     811                 :            :       88,    89,    90,    91,    92,    93,    94,    95,    96,    97,
     812                 :            :       98
     813                 :            : };
     814                 :            : 
     815                 :            :   /* YYR2[YYN] -- Number of symbols on the right hand side of rule YYN.  */
     816                 :            : static const yytype_uint8 yyr2[] =
     817                 :            : {
     818                 :            :        0,     2,     1,     0,     2,     1,     1,     1,     0,     2,
     819                 :            :        1,     1,     0,     2,     1,     0,     2,     1,     1,     0,
     820                 :            :        2,     1,     1,     1,     1,     1,     1,     1,     1,     0,
     821                 :            :        2,     1,     1,     1,     1,     1,     1,     1,     1,     1,
     822                 :            :        1,     1,     1,     1,     1,     1,     1,     0,     2,     1,
     823                 :            :        1,     1,     0,     2,     3,     5,     1,     0,     2,     5,
     824                 :            :        4,     3,     4,     5,     6,     3,     6,     4,     5,     3,
     825                 :            :        4,     5,     4,     5,     7,     4,     0,     2,     2,     2,
     826                 :            :        5,     3,     5,     4,     5,     2,     6,     3,     3,     4,
     827                 :            :        3,     7,     7,     3,     3,     3,     3,     3,     4,     4,
     828                 :            :        3
     829                 :            : };
     830                 :            : 
     831                 :            : 
     832                 :            : #define yyerrok         (yyerrstatus = 0)
     833                 :            : #define yyclearin       (yychar = YYEMPTY)
     834                 :            : #define YYEMPTY         (-2)
     835                 :            : #define YYEOF           0
     836                 :            : 
     837                 :            : #define YYACCEPT        goto yyacceptlab
     838                 :            : #define YYABORT         goto yyabortlab
     839                 :            : #define YYERROR         goto yyerrorlab
     840                 :            : 
     841                 :            : 
     842                 :            : #define YYRECOVERING()  (!!yyerrstatus)
     843                 :            : 
     844                 :            : #define YYBACKUP(Token, Value)                                  \
     845                 :            : do                                                              \
     846                 :            :   if (yychar == YYEMPTY)                                        \
     847                 :            :     {                                                           \
     848                 :            :       yychar = (Token);                                         \
     849                 :            :       yylval = (Value);                                         \
     850                 :            :       YYPOPSTACK (yylen);                                       \
     851                 :            :       yystate = *yyssp;                                         \
     852                 :            :       goto yybackup;                                            \
     853                 :            :     }                                                           \
     854                 :            :   else                                                          \
     855                 :            :     {                                                           \
     856                 :            :       yyerror (YY_("syntax error: cannot back up")); \
     857                 :            :       YYERROR;                                                  \
     858                 :            :     }                                                           \
     859                 :            : while (0)
     860                 :            : 
     861                 :            : /* Error token number */
     862                 :            : #define YYTERROR        1
     863                 :            : #define YYERRCODE       256
     864                 :            : 
     865                 :            : 
     866                 :            : 
     867                 :            : /* Enable debugging if requested.  */
     868                 :            : #if YYDEBUG
     869                 :            : 
     870                 :            : # ifndef YYFPRINTF
     871                 :            : #  include <stdio.h> /* INFRINGES ON USER NAME SPACE */
     872                 :            : #  define YYFPRINTF fprintf
     873                 :            : # endif
     874                 :            : 
     875                 :            : # define YYDPRINTF(Args)                        \
     876                 :            : do {                                            \
     877                 :            :   if (yydebug)                                  \
     878                 :            :     YYFPRINTF Args;                             \
     879                 :            : } while (0)
     880                 :            : 
     881                 :            : /* This macro is provided for backward compatibility. */
     882                 :            : #ifndef YY_LOCATION_PRINT
     883                 :            : # define YY_LOCATION_PRINT(File, Loc) ((void) 0)
     884                 :            : #endif
     885                 :            : 
     886                 :            : 
     887                 :            : # define YY_SYMBOL_PRINT(Title, Type, Value, Location)                    \
     888                 :            : do {                                                                      \
     889                 :            :   if (yydebug)                                                            \
     890                 :            :     {                                                                     \
     891                 :            :       YYFPRINTF (stderr, "%s ", Title);                                   \
     892                 :            :       yy_symbol_print (stderr,                                            \
     893                 :            :                   Type, Value); \
     894                 :            :       YYFPRINTF (stderr, "\n");                                           \
     895                 :            :     }                                                                     \
     896                 :            : } while (0)
     897                 :            : 
     898                 :            : 
     899                 :            : /*----------------------------------------.
     900                 :            : | Print this symbol's value on YYOUTPUT.  |
     901                 :            : `----------------------------------------*/
     902                 :            : 
     903                 :            : static void
     904                 :          0 : yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
     905                 :            : {
     906                 :          0 :   FILE *yyo = yyoutput;
     907                 :            :   YYUSE (yyo);
     908         [ #  # ]:          0 :   if (!yyvaluep)
     909                 :          0 :     return;
     910                 :            : # ifdef YYPRINT
     911                 :            :   if (yytype < YYNTOKENS)
     912                 :            :     YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
     913                 :            : # endif
     914                 :            :   YYUSE (yytype);
     915                 :            : }
     916                 :            : 
     917                 :            : 
     918                 :            : /*--------------------------------.
     919                 :            : | Print this symbol on YYOUTPUT.  |
     920                 :            : `--------------------------------*/
     921                 :            : 
     922                 :            : static void
     923                 :          0 : yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
     924                 :            : {
     925                 :            :   YYFPRINTF (yyoutput, "%s %s (",
     926         [ #  # ]:          0 :              yytype < YYNTOKENS ? "token" : "nterm", yytname[yytype]);
     927                 :            : 
     928                 :          0 :   yy_symbol_value_print (yyoutput, yytype, yyvaluep);
     929                 :          0 :   YYFPRINTF (yyoutput, ")");
     930                 :          0 : }
     931                 :            : 
     932                 :            : /*------------------------------------------------------------------.
     933                 :            : | yy_stack_print -- Print the state stack from its BOTTOM up to its |
     934                 :            : | TOP (included).                                                   |
     935                 :            : `------------------------------------------------------------------*/
     936                 :            : 
     937                 :            : static void
     938                 :          0 : yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
     939                 :            : {
     940                 :          0 :   YYFPRINTF (stderr, "Stack now");
     941         [ #  # ]:          0 :   for (; yybottom <= yytop; yybottom++)
     942                 :            :     {
     943                 :          0 :       int yybot = *yybottom;
     944                 :          0 :       YYFPRINTF (stderr, " %d", yybot);
     945                 :            :     }
     946                 :          0 :   YYFPRINTF (stderr, "\n");
     947                 :          0 : }
     948                 :            : 
     949                 :            : # define YY_STACK_PRINT(Bottom, Top)                            \
     950                 :            : do {                                                            \
     951                 :            :   if (yydebug)                                                  \
     952                 :            :     yy_stack_print ((Bottom), (Top));                           \
     953                 :            : } while (0)
     954                 :            : 
     955                 :            : 
     956                 :            : /*------------------------------------------------.
     957                 :            : | Report that the YYRULE is going to be reduced.  |
     958                 :            : `------------------------------------------------*/
     959                 :            : 
     960                 :            : static void
     961                 :          0 : yy_reduce_print (yytype_int16 *yyssp, YYSTYPE *yyvsp, int yyrule)
     962                 :            : {
     963                 :          0 :   unsigned long int yylno = yyrline[yyrule];
     964                 :          0 :   int yynrhs = yyr2[yyrule];
     965                 :            :   int yyi;
     966                 :            :   YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
     967                 :          0 :              yyrule - 1, yylno);
     968                 :            :   /* The symbols being reduced.  */
     969         [ #  # ]:          0 :   for (yyi = 0; yyi < yynrhs; yyi++)
     970                 :            :     {
     971                 :          0 :       YYFPRINTF (stderr, "   $%d = ", yyi + 1);
     972                 :            :       yy_symbol_print (stderr,
     973                 :          0 :                        yystos[yyssp[yyi + 1 - yynrhs]],
     974                 :            :                        &(yyvsp[(yyi + 1) - (yynrhs)])
     975                 :          0 :                                               );
     976                 :          0 :       YYFPRINTF (stderr, "\n");
     977                 :            :     }
     978                 :          0 : }
     979                 :            : 
     980                 :            : # define YY_REDUCE_PRINT(Rule)          \
     981                 :            : do {                                    \
     982                 :            :   if (yydebug)                          \
     983                 :            :     yy_reduce_print (yyssp, yyvsp, Rule); \
     984                 :            : } while (0)
     985                 :            : 
     986                 :            : /* Nonzero means print parse trace.  It is left uninitialized so that
     987                 :            :    multiple parsers can coexist.  */
     988                 :            : int yydebug;
     989                 :            : #else /* !YYDEBUG */
     990                 :            : # define YYDPRINTF(Args)
     991                 :            : # define YY_SYMBOL_PRINT(Title, Type, Value, Location)
     992                 :            : # define YY_STACK_PRINT(Bottom, Top)
     993                 :            : # define YY_REDUCE_PRINT(Rule)
     994                 :            : #endif /* !YYDEBUG */
     995                 :            : 
     996                 :            : 
     997                 :            : /* YYINITDEPTH -- initial size of the parser's stacks.  */
     998                 :            : #ifndef YYINITDEPTH
     999                 :            : # define YYINITDEPTH 200
    1000                 :            : #endif
    1001                 :            : 
    1002                 :            : /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
    1003                 :            :    if the built-in stack extension method is used).
    1004                 :            : 
    1005                 :            :    Do not make this value too large; the results are undefined if
    1006                 :            :    YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
    1007                 :            :    evaluated with infinite-precision integer arithmetic.  */
    1008                 :            : 
    1009                 :            : #ifndef YYMAXDEPTH
    1010                 :            : # define YYMAXDEPTH 10000
    1011                 :            : #endif
    1012                 :            : 
    1013                 :            : 
    1014                 :            : #if YYERROR_VERBOSE
    1015                 :            : 
    1016                 :            : # ifndef yystrlen
    1017                 :            : #  if defined __GLIBC__ && defined _STRING_H
    1018                 :            : #   define yystrlen strlen
    1019                 :            : #  else
    1020                 :            : /* Return the length of YYSTR.  */
    1021                 :            : static YYSIZE_T
    1022                 :          0 : yystrlen (const char *yystr)
    1023                 :            : {
    1024                 :            :   YYSIZE_T yylen;
    1025         [ #  # ]:          0 :   for (yylen = 0; yystr[yylen]; yylen++)
    1026                 :          0 :     continue;
    1027                 :          0 :   return yylen;
    1028                 :            : }
    1029                 :            : #  endif
    1030                 :            : # endif
    1031                 :            : 
    1032                 :            : # ifndef yystpcpy
    1033                 :            : #  if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
    1034                 :            : #   define yystpcpy stpcpy
    1035                 :            : #  else
    1036                 :            : /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
    1037                 :            :    YYDEST.  */
    1038                 :            : static char *
    1039                 :          0 : yystpcpy (char *yydest, const char *yysrc)
    1040                 :            : {
    1041                 :          0 :   char *yyd = yydest;
    1042                 :          0 :   const char *yys = yysrc;
    1043                 :            : 
    1044         [ #  # ]:          0 :   while ((*yyd++ = *yys++) != '\0')
    1045                 :          0 :     continue;
    1046                 :            : 
    1047                 :          0 :   return yyd - 1;
    1048                 :            : }
    1049                 :            : #  endif
    1050                 :            : # endif
    1051                 :            : 
    1052                 :            : # ifndef yytnamerr
    1053                 :            : /* Copy to YYRES the contents of YYSTR after stripping away unnecessary
    1054                 :            :    quotes and backslashes, so that it's suitable for yyerror.  The
    1055                 :            :    heuristic is that double-quoting is unnecessary unless the string
    1056                 :            :    contains an apostrophe, a comma, or backslash (other than
    1057                 :            :    backslash-backslash).  YYSTR is taken from yytname.  If YYRES is
    1058                 :            :    null, do not copy; instead, return the length of what the result
    1059                 :            :    would have been.  */
    1060                 :            : static YYSIZE_T
    1061                 :          0 : yytnamerr (char *yyres, const char *yystr)
    1062                 :            : {
    1063         [ #  # ]:          0 :   if (*yystr == '"')
    1064                 :            :     {
    1065                 :          0 :       YYSIZE_T yyn = 0;
    1066                 :          0 :       char const *yyp = yystr;
    1067                 :            : 
    1068                 :          0 :       for (;;)
    1069   [ #  #  #  # ]:          0 :         switch (*++yyp)
    1070                 :            :           {
    1071                 :            :           case '\'':
    1072                 :            :           case ',':
    1073                 :          0 :             goto do_not_strip_quotes;
    1074                 :            : 
    1075                 :            :           case '\\':
    1076         [ #  # ]:          0 :             if (*++yyp != '\\')
    1077                 :          0 :               goto do_not_strip_quotes;
    1078                 :            :             /* Fall through.  */
    1079                 :            :           default:
    1080         [ #  # ]:          0 :             if (yyres)
    1081                 :          0 :               yyres[yyn] = *yyp;
    1082                 :          0 :             yyn++;
    1083                 :          0 :             break;
    1084                 :            : 
    1085                 :            :           case '"':
    1086         [ #  # ]:          0 :             if (yyres)
    1087                 :          0 :               yyres[yyn] = '\0';
    1088                 :          0 :             return yyn;
    1089                 :            :           }
    1090                 :            :     do_not_strip_quotes: ;
    1091                 :            :     }
    1092                 :            : 
    1093         [ #  # ]:          0 :   if (! yyres)
    1094                 :          0 :     return yystrlen (yystr);
    1095                 :            : 
    1096                 :          0 :   return yystpcpy (yyres, yystr) - yyres;
    1097                 :            : }
    1098                 :            : # endif
    1099                 :            : 
    1100                 :            : /* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message
    1101                 :            :    about the unexpected token YYTOKEN for the state stack whose top is
    1102                 :            :    YYSSP.
    1103                 :            : 
    1104                 :            :    Return 0 if *YYMSG was successfully written.  Return 1 if *YYMSG is
    1105                 :            :    not large enough to hold the message.  In that case, also set
    1106                 :            :    *YYMSG_ALLOC to the required number of bytes.  Return 2 if the
    1107                 :            :    required number of bytes is too large to store.  */
    1108                 :            : static int
    1109                 :          0 : yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
    1110                 :            :                 yytype_int16 *yyssp, int yytoken)
    1111                 :            : {
    1112                 :          0 :   YYSIZE_T yysize0 = yytnamerr (YY_NULLPTR, yytname[yytoken]);
    1113                 :          0 :   YYSIZE_T yysize = yysize0;
    1114                 :            :   enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
    1115                 :            :   /* Internationalized format string. */
    1116                 :          0 :   const char *yyformat = YY_NULLPTR;
    1117                 :            :   /* Arguments of yyformat. */
    1118                 :            :   char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
    1119                 :            :   /* Number of reported tokens (one for the "unexpected", one per
    1120                 :            :      "expected"). */
    1121                 :          0 :   int yycount = 0;
    1122                 :            : 
    1123                 :            :   /* There are many possibilities here to consider:
    1124                 :            :      - If this state is a consistent state with a default action, then
    1125                 :            :        the only way this function was invoked is if the default action
    1126                 :            :        is an error action.  In that case, don't check for expected
    1127                 :            :        tokens because there are none.
    1128                 :            :      - The only way there can be no lookahead present (in yychar) is if
    1129                 :            :        this state is a consistent state with a default action.  Thus,
    1130                 :            :        detecting the absence of a lookahead is sufficient to determine
    1131                 :            :        that there is no unexpected or expected token to report.  In that
    1132                 :            :        case, just report a simple "syntax error".
    1133                 :            :      - Don't assume there isn't a lookahead just because this state is a
    1134                 :            :        consistent state with a default action.  There might have been a
    1135                 :            :        previous inconsistent state, consistent state with a non-default
    1136                 :            :        action, or user semantic action that manipulated yychar.
    1137                 :            :      - Of course, the expected token list depends on states to have
    1138                 :            :        correct lookahead information, and it depends on the parser not
    1139                 :            :        to perform extra reductions after fetching a lookahead from the
    1140                 :            :        scanner and before detecting a syntax error.  Thus, state merging
    1141                 :            :        (from LALR or IELR) and default reductions corrupt the expected
    1142                 :            :        token list.  However, the list is correct for canonical LR with
    1143                 :            :        one exception: it will still contain any token that will not be
    1144                 :            :        accepted due to an error action in a later state.
    1145                 :            :   */
    1146         [ #  # ]:          0 :   if (yytoken != YYEMPTY)
    1147                 :            :     {
    1148                 :          0 :       int yyn = yypact[*yyssp];
    1149                 :          0 :       yyarg[yycount++] = yytname[yytoken];
    1150         [ #  # ]:          0 :       if (!yypact_value_is_default (yyn))
    1151                 :            :         {
    1152                 :            :           /* Start YYX at -YYN if negative to avoid negative indexes in
    1153                 :            :              YYCHECK.  In other words, skip the first -YYN actions for
    1154                 :            :              this state because they are default actions.  */
    1155         [ #  # ]:          0 :           int yyxbegin = yyn < 0 ? -yyn : 0;
    1156                 :            :           /* Stay within bounds of both yycheck and yytname.  */
    1157                 :          0 :           int yychecklim = YYLAST - yyn + 1;
    1158                 :          0 :           int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
    1159                 :            :           int yyx;
    1160                 :            : 
    1161         [ #  # ]:          0 :           for (yyx = yyxbegin; yyx < yyxend; ++yyx)
    1162 [ #  # ][ #  # ]:          0 :             if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
    1163                 :            :                 && !yytable_value_is_error (yytable[yyx + yyn]))
    1164                 :            :               {
    1165         [ #  # ]:          0 :                 if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
    1166                 :            :                   {
    1167                 :          0 :                     yycount = 1;
    1168                 :          0 :                     yysize = yysize0;
    1169                 :          0 :                     break;
    1170                 :            :                   }
    1171                 :          0 :                 yyarg[yycount++] = yytname[yyx];
    1172                 :            :                 {
    1173                 :          0 :                   YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULLPTR, yytname[yyx]);
    1174         [ #  # ]:          0 :                   if (! (yysize <= yysize1
    1175                 :            :                          && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
    1176                 :          0 :                     return 2;
    1177                 :          0 :                   yysize = yysize1;
    1178                 :            :                 }
    1179                 :            :               }
    1180                 :            :         }
    1181                 :            :     }
    1182                 :            : 
    1183   [ #  #  #  #  :          0 :   switch (yycount)
                #  #  # ]
    1184                 :            :     {
    1185                 :            : # define YYCASE_(N, S)                      \
    1186                 :            :       case N:                               \
    1187                 :            :         yyformat = S;                       \
    1188                 :            :       break
    1189                 :          0 :       YYCASE_(0, YY_("syntax error"));
    1190                 :          0 :       YYCASE_(1, YY_("syntax error, unexpected %s"));
    1191                 :          0 :       YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
    1192                 :          0 :       YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
    1193                 :          0 :       YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
    1194                 :          0 :       YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
    1195                 :            : # undef YYCASE_
    1196                 :            :     }
    1197                 :            : 
    1198                 :            :   {
    1199                 :          0 :     YYSIZE_T yysize1 = yysize + yystrlen (yyformat);
    1200         [ #  # ]:          0 :     if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
    1201                 :          0 :       return 2;
    1202                 :          0 :     yysize = yysize1;
    1203                 :            :   }
    1204                 :            : 
    1205         [ #  # ]:          0 :   if (*yymsg_alloc < yysize)
    1206                 :            :     {
    1207                 :          0 :       *yymsg_alloc = 2 * yysize;
    1208         [ #  # ]:          0 :       if (! (yysize <= *yymsg_alloc
    1209                 :          0 :              && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
    1210                 :          0 :         *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
    1211                 :          0 :       return 1;
    1212                 :            :     }
    1213                 :            : 
    1214                 :            :   /* Avoid sprintf, as that infringes on the user's name space.
    1215                 :            :      Don't have undefined behavior even if the translation
    1216                 :            :      produced a string with the wrong number of "%s"s.  */
    1217                 :            :   {
    1218                 :          0 :     char *yyp = *yymsg;
    1219                 :          0 :     int yyi = 0;
    1220         [ #  # ]:          0 :     while ((*yyp = *yyformat) != '\0')
    1221 [ #  # ][ #  # ]:          0 :       if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
                 [ #  # ]
    1222                 :            :         {
    1223                 :          0 :           yyp += yytnamerr (yyp, yyarg[yyi++]);
    1224                 :          0 :           yyformat += 2;
    1225                 :            :         }
    1226                 :            :       else
    1227                 :            :         {
    1228                 :          0 :           yyp++;
    1229                 :          0 :           yyformat++;
    1230                 :            :         }
    1231                 :            :   }
    1232                 :          0 :   return 0;
    1233                 :            : }
    1234                 :            : #endif /* YYERROR_VERBOSE */
    1235                 :            : 
    1236                 :            : /*-----------------------------------------------.
    1237                 :            : | Release the memory associated to this symbol.  |
    1238                 :            : `-----------------------------------------------*/
    1239                 :            : 
    1240                 :            : static void
    1241                 :          0 : yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep)
    1242                 :            : {
    1243                 :            :   YYUSE (yyvaluep);
    1244         [ #  # ]:          0 :   if (!yymsg)
    1245                 :          0 :     yymsg = "Deleting";
    1246         [ #  # ]:          0 :   YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
    1247                 :            : 
    1248                 :            :   YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
    1249                 :            :   YYUSE (yytype);
    1250                 :            :   YY_IGNORE_MAYBE_UNINITIALIZED_END
    1251                 :          0 : }
    1252                 :            : 
    1253                 :            : 
    1254                 :            : 
    1255                 :            : 
    1256                 :            : /* The lookahead symbol.  */
    1257                 :            : int yychar;
    1258                 :            : 
    1259                 :            : /* The semantic value of the lookahead symbol.  */
    1260                 :            : YYSTYPE yylval;
    1261                 :            : /* Number of syntax errors so far.  */
    1262                 :            : int yynerrs;
    1263                 :            : 
    1264                 :            : 
    1265                 :            : /*----------.
    1266                 :            : | yyparse.  |
    1267                 :            : `----------*/
    1268                 :            : 
    1269                 :            : int
    1270                 :          0 : yyparse (void)
    1271                 :            : {
    1272                 :            :     int yystate;
    1273                 :            :     /* Number of tokens to shift before error messages enabled.  */
    1274                 :            :     int yyerrstatus;
    1275                 :            : 
    1276                 :            :     /* The stacks and their tools:
    1277                 :            :        'yyss': related to states.
    1278                 :            :        'yyvs': related to semantic values.
    1279                 :            : 
    1280                 :            :        Refer to the stacks through separate pointers, to allow yyoverflow
    1281                 :            :        to reallocate them elsewhere.  */
    1282                 :            : 
    1283                 :            :     /* The state stack.  */
    1284                 :            :     yytype_int16 yyssa[YYINITDEPTH];
    1285                 :            :     yytype_int16 *yyss;
    1286                 :            :     yytype_int16 *yyssp;
    1287                 :            : 
    1288                 :            :     /* The semantic value stack.  */
    1289                 :            :     YYSTYPE yyvsa[YYINITDEPTH];
    1290                 :            :     YYSTYPE *yyvs;
    1291                 :            :     YYSTYPE *yyvsp;
    1292                 :            : 
    1293                 :            :     YYSIZE_T yystacksize;
    1294                 :            : 
    1295                 :            :   int yyn;
    1296                 :            :   int yyresult;
    1297                 :            :   /* Lookahead token as an internal (translated) token number.  */
    1298                 :          0 :   int yytoken = 0;
    1299                 :            :   /* The variables used to return semantic value and location from the
    1300                 :            :      action routines.  */
    1301                 :            :   YYSTYPE yyval;
    1302                 :            : 
    1303                 :            : #if YYERROR_VERBOSE
    1304                 :            :   /* Buffer for error messages, and its allocated size.  */
    1305                 :            :   char yymsgbuf[128];
    1306                 :          0 :   char *yymsg = yymsgbuf;
    1307                 :          0 :   YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
    1308                 :            : #endif
    1309                 :            : 
    1310                 :            : #define YYPOPSTACK(N)   (yyvsp -= (N), yyssp -= (N))
    1311                 :            : 
    1312                 :            :   /* The number of symbols on the RHS of the reduced rule.
    1313                 :            :      Keep to zero when no symbol should be popped.  */
    1314                 :          0 :   int yylen = 0;
    1315                 :            : 
    1316                 :          0 :   yyssp = yyss = yyssa;
    1317                 :          0 :   yyvsp = yyvs = yyvsa;
    1318                 :          0 :   yystacksize = YYINITDEPTH;
    1319                 :            : 
    1320 [ #  # ][ #  # ]:          0 :   YYDPRINTF ((stderr, "Starting parse\n"));
    1321                 :            : 
    1322                 :          0 :   yystate = 0;
    1323                 :          0 :   yyerrstatus = 0;
    1324                 :          0 :   yynerrs = 0;
    1325                 :          0 :   yychar = YYEMPTY; /* Cause a token to be read.  */
    1326                 :          0 :   goto yysetstate;
    1327                 :            : 
    1328                 :            : /*------------------------------------------------------------.
    1329                 :            : | yynewstate -- Push a new state, which is found in yystate.  |
    1330                 :            : `------------------------------------------------------------*/
    1331                 :            :  yynewstate:
    1332                 :            :   /* In all cases, when you get here, the value and location stacks
    1333                 :            :      have just been pushed.  So pushing a state here evens the stacks.  */
    1334                 :          0 :   yyssp++;
    1335                 :            : 
    1336                 :            :  yysetstate:
    1337                 :          0 :   *yyssp = yystate;
    1338                 :            : 
    1339         [ #  # ]:          0 :   if (yyss + yystacksize - 1 <= yyssp)
    1340                 :            :     {
    1341                 :            :       /* Get the current used size of the three stacks, in elements.  */
    1342                 :          0 :       YYSIZE_T yysize = yyssp - yyss + 1;
    1343                 :            : 
    1344                 :            : #ifdef yyoverflow
    1345                 :            :       {
    1346                 :            :         /* Give user a chance to reallocate the stack.  Use copies of
    1347                 :            :            these so that the &'s don't force the real ones into
    1348                 :            :            memory.  */
    1349                 :            :         YYSTYPE *yyvs1 = yyvs;
    1350                 :            :         yytype_int16 *yyss1 = yyss;
    1351                 :            : 
    1352                 :            :         /* Each stack pointer address is followed by the size of the
    1353                 :            :            data in use in that stack, in bytes.  This used to be a
    1354                 :            :            conditional around just the two extra args, but that might
    1355                 :            :            be undefined if yyoverflow is a macro.  */
    1356                 :            :         yyoverflow (YY_("memory exhausted"),
    1357                 :            :                     &yyss1, yysize * sizeof (*yyssp),
    1358                 :            :                     &yyvs1, yysize * sizeof (*yyvsp),
    1359                 :            :                     &yystacksize);
    1360                 :            : 
    1361                 :            :         yyss = yyss1;
    1362                 :            :         yyvs = yyvs1;
    1363                 :            :       }
    1364                 :            : #else /* no yyoverflow */
    1365                 :            : # ifndef YYSTACK_RELOCATE
    1366                 :            :       goto yyexhaustedlab;
    1367                 :            : # else
    1368                 :            :       /* Extend the stack our own way.  */
    1369         [ #  # ]:          0 :       if (YYMAXDEPTH <= yystacksize)
    1370                 :          0 :         goto yyexhaustedlab;
    1371                 :          0 :       yystacksize *= 2;
    1372         [ #  # ]:          0 :       if (YYMAXDEPTH < yystacksize)
    1373                 :          0 :         yystacksize = YYMAXDEPTH;
    1374                 :            : 
    1375                 :            :       {
    1376                 :          0 :         yytype_int16 *yyss1 = yyss;
    1377                 :            :         union yyalloc *yyptr =
    1378                 :          0 :           (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
    1379         [ #  # ]:          0 :         if (! yyptr)
    1380                 :          0 :           goto yyexhaustedlab;
    1381                 :          0 :         YYSTACK_RELOCATE (yyss_alloc, yyss);
    1382                 :          0 :         YYSTACK_RELOCATE (yyvs_alloc, yyvs);
    1383                 :            : #  undef YYSTACK_RELOCATE
    1384         [ #  # ]:          0 :         if (yyss1 != yyssa)
    1385                 :          0 :           YYSTACK_FREE (yyss1);
    1386                 :            :       }
    1387                 :            : # endif
    1388                 :            : #endif /* no yyoverflow */
    1389                 :            : 
    1390                 :          0 :       yyssp = yyss + yysize - 1;
    1391                 :          0 :       yyvsp = yyvs + yysize - 1;
    1392                 :            : 
    1393 [ #  # ][ #  # ]:          0 :       YYDPRINTF ((stderr, "Stack size increased to %lu\n",
    1394                 :            :                   (unsigned long int) yystacksize));
    1395                 :            : 
    1396         [ #  # ]:          0 :       if (yyss + yystacksize - 1 <= yyssp)
    1397                 :          0 :         YYABORT;
    1398                 :            :     }
    1399                 :            : 
    1400 [ #  # ][ #  # ]:          0 :   YYDPRINTF ((stderr, "Entering state %d\n", yystate));
    1401                 :            : 
    1402         [ #  # ]:          0 :   if (yystate == YYFINAL)
    1403                 :          0 :     YYACCEPT;
    1404                 :            : 
    1405                 :          0 :   goto yybackup;
    1406                 :            : 
    1407                 :            : /*-----------.
    1408                 :            : | yybackup.  |
    1409                 :            : `-----------*/
    1410                 :            : yybackup:
    1411                 :            : 
    1412                 :            :   /* Do appropriate processing given the current state.  Read a
    1413                 :            :      lookahead token if we need one and don't already have one.  */
    1414                 :            : 
    1415                 :            :   /* First try to decide what to do without reference to lookahead token.  */
    1416                 :          0 :   yyn = yypact[yystate];
    1417         [ #  # ]:          0 :   if (yypact_value_is_default (yyn))
    1418                 :          0 :     goto yydefault;
    1419                 :            : 
    1420                 :            :   /* Not known => get a lookahead token if don't already have one.  */
    1421                 :            : 
    1422                 :            :   /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol.  */
    1423         [ #  # ]:          0 :   if (yychar == YYEMPTY)
    1424                 :            :     {
    1425 [ #  # ][ #  # ]:          0 :       YYDPRINTF ((stderr, "Reading a token: "));
    1426         [ #  # ]:          0 :       yychar = yylex ();
    1427                 :            :     }
    1428                 :            : 
    1429         [ #  # ]:          0 :   if (yychar <= YYEOF)
    1430                 :            :     {
    1431                 :          0 :       yychar = yytoken = YYEOF;
    1432 [ #  # ][ #  # ]:          0 :       YYDPRINTF ((stderr, "Now at end of input.\n"));
    1433                 :            :     }
    1434                 :            :   else
    1435                 :            :     {
    1436         [ #  # ]:          0 :       yytoken = YYTRANSLATE (yychar);
    1437 [ #  # ][ #  # ]:          0 :       YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
         [ #  # ][ #  # ]
    1438                 :            :     }
    1439                 :            : 
    1440                 :            :   /* If the proper action on seeing token YYTOKEN is to reduce or to
    1441                 :            :      detect an error, take that action.  */
    1442                 :          0 :   yyn += yytoken;
    1443 [ #  # ][ #  # ]:          0 :   if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
                 [ #  # ]
    1444                 :            :     goto yydefault;
    1445                 :          0 :   yyn = yytable[yyn];
    1446         [ #  # ]:          0 :   if (yyn <= 0)
    1447                 :            :     {
    1448                 :            :       if (yytable_value_is_error (yyn))
    1449                 :            :         goto yyerrlab;
    1450                 :          0 :       yyn = -yyn;
    1451                 :          0 :       goto yyreduce;
    1452                 :            :     }
    1453                 :            : 
    1454                 :            :   /* Count tokens shifted since error; after three, turn off error
    1455                 :            :      status.  */
    1456         [ #  # ]:          0 :   if (yyerrstatus)
    1457                 :          0 :     yyerrstatus--;
    1458                 :            : 
    1459                 :            :   /* Shift the lookahead token.  */
    1460 [ #  # ][ #  # ]:          0 :   YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
         [ #  # ][ #  # ]
    1461                 :            : 
    1462                 :            :   /* Discard the shifted token.  */
    1463                 :          0 :   yychar = YYEMPTY;
    1464                 :            : 
    1465                 :          0 :   yystate = yyn;
    1466                 :            :   YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
    1467                 :          0 :   *++yyvsp = yylval;
    1468                 :            :   YY_IGNORE_MAYBE_UNINITIALIZED_END
    1469                 :            : 
    1470                 :          0 :   goto yynewstate;
    1471                 :            : 
    1472                 :            : 
    1473                 :            : /*-----------------------------------------------------------.
    1474                 :            : | yydefault -- do the default action for the current state.  |
    1475                 :            : `-----------------------------------------------------------*/
    1476                 :            : yydefault:
    1477                 :          0 :   yyn = yydefact[yystate];
    1478         [ #  # ]:          0 :   if (yyn == 0)
    1479                 :          0 :     goto yyerrlab;
    1480                 :          0 :   goto yyreduce;
    1481                 :            : 
    1482                 :            : 
    1483                 :            : /*-----------------------------.
    1484                 :            : | yyreduce -- Do a reduction.  |
    1485                 :            : `-----------------------------*/
    1486                 :            : yyreduce:
    1487                 :            :   /* yyn is the number of a rule to reduce with.  */
    1488                 :          0 :   yylen = yyr2[yyn];
    1489                 :            : 
    1490                 :            :   /* If YYLEN is nonzero, implement the default value of the action:
    1491                 :            :      '$$ = $1'.
    1492                 :            : 
    1493                 :            :      Otherwise, the following line sets YYVAL to garbage.
    1494                 :            :      This behavior is undocumented and Bison
    1495                 :            :      users should not rely upon it.  Assigning to YYVAL
    1496                 :            :      unconditionally makes the parser a bit smaller, and it avoids a
    1497                 :            :      GCC warning that YYVAL may be used uninitialized.  */
    1498                 :          0 :   yyval = yyvsp[1-yylen];
    1499                 :            : 
    1500                 :            : 
    1501 [ #  # ][ #  # ]:          0 :   YY_REDUCE_PRINT (yyn);
    1502   [ #  #  #  #  :          0 :   switch (yyn)
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
                #  #  # ]
    1503                 :            :     {
    1504                 :            :         case 2:
    1505                 :            : #line 125 "parse_mdl.y" /* yacc.c:1661  */
    1506                 :            :     {
    1507                 :            :     mdl_root = (yyvsp[0].link);
    1508                 :            :   }
    1509                 :            : #line 1510 "parse_mdl.cpp" /* yacc.c:1661  */
    1510                 :          0 :     break;
    1511                 :            : 
    1512                 :            :   case 3:
    1513                 :            : #line 130 "parse_mdl.y" /* yacc.c:1661  */
    1514                 :            :     { (yyval.link) = NULL; }
    1515                 :            : #line 1516 "parse_mdl.cpp" /* yacc.c:1661  */
    1516                 :          0 :     break;
    1517                 :            : 
    1518                 :            :   case 4:
    1519                 :            : #line 131 "parse_mdl.y" /* yacc.c:1661  */
    1520                 :            :     {
    1521                 :            :     (yyvsp[-1].link)->next = (yyvsp[0].link);
    1522                 :            :     (yyval.link) = (yyvsp[-1].link);
    1523                 :            :   }
    1524                 :            : #line 1525 "parse_mdl.cpp" /* yacc.c:1661  */
    1525                 :          0 :     break;
    1526                 :            : 
    1527                 :            :   case 5:
    1528                 :            : #line 138 "parse_mdl.y" /* yacc.c:1661  */
    1529                 :            :     {
    1530                 :            :     (yyval.element) = NULL;
    1531                 :            :   }
    1532                 :            : #line 1533 "parse_mdl.cpp" /* yacc.c:1661  */
    1533                 :          0 :     break;
    1534                 :            : 
    1535                 :            :   case 6:
    1536                 :            : #line 141 "parse_mdl.y" /* yacc.c:1661  */
    1537                 :            :     {
    1538                 :            :     (yyval.element) = (yyvsp[0].element);
    1539                 :            :   }
    1540                 :            : #line 1541 "parse_mdl.cpp" /* yacc.c:1661  */
    1541                 :          0 :     break;
    1542                 :            : 
    1543                 :            :   case 7:
    1544                 :            : #line 144 "parse_mdl.y" /* yacc.c:1661  */
    1545                 :            :     {
    1546                 :            :     (yyval.element) = NULL;
    1547                 :            :   }
    1548                 :            : #line 1549 "parse_mdl.cpp" /* yacc.c:1661  */
    1549                 :          0 :     break;
    1550                 :            : 
    1551                 :            :   case 8:
    1552                 :            : #line 149 "parse_mdl.y" /* yacc.c:1661  */
    1553                 :            :     { (yyval.element) = NULL; }
    1554                 :            : #line 1555 "parse_mdl.cpp" /* yacc.c:1661  */
    1555                 :          0 :     break;
    1556                 :            : 
    1557                 :            :   case 9:
    1558                 :            : #line 150 "parse_mdl.y" /* yacc.c:1661  */
    1559                 :            :     {
    1560                 :            :     if ((yyvsp[-1].element)) {
    1561                 :            :       (yyvsp[-1].element)->next = (yyvsp[0].element);
    1562                 :            :       (yyval.element) = (yyvsp[-1].element);
    1563                 :            :     } else {
    1564                 :            :       (yyval.element) = (yyvsp[0].element);
    1565                 :            :     }
    1566                 :            :   }
    1567                 :            : #line 1568 "parse_mdl.cpp" /* yacc.c:1661  */
    1568                 :          0 :     break;
    1569                 :            : 
    1570                 :            :   case 10:
    1571                 :            : #line 161 "parse_mdl.y" /* yacc.c:1661  */
    1572                 :            :     {
    1573                 :            :     (yyval.element) = NULL;
    1574                 :            :   }
    1575                 :            : #line 1576 "parse_mdl.cpp" /* yacc.c:1661  */
    1576                 :          0 :     break;
    1577                 :            : 
    1578                 :            :   case 11:
    1579                 :            : #line 164 "parse_mdl.y" /* yacc.c:1661  */
    1580                 :            :     {
    1581                 :            :     (yyval.element) = (yyvsp[0].element);
    1582                 :            :   }
    1583                 :            : #line 1584 "parse_mdl.cpp" /* yacc.c:1661  */
    1584                 :          0 :     break;
    1585                 :            : 
    1586                 :            :   case 12:
    1587                 :            : #line 169 "parse_mdl.y" /* yacc.c:1661  */
    1588                 :            :     { (yyval.element) = NULL; }
    1589                 :            : #line 1590 "parse_mdl.cpp" /* yacc.c:1661  */
    1590                 :          0 :     break;
    1591                 :            : 
    1592                 :            :   case 13:
    1593                 :            : #line 170 "parse_mdl.y" /* yacc.c:1661  */
    1594                 :            :     {
    1595                 :            :     if ((yyvsp[-1].element)) {
    1596                 :            :       (yyvsp[-1].element)->next = (yyvsp[0].element);
    1597                 :            :       (yyval.element) = (yyvsp[-1].element);
    1598                 :            :     } else {
    1599                 :            :       (yyval.element) = (yyvsp[0].element);
    1600                 :            :     }
    1601                 :            :   }
    1602                 :            : #line 1603 "parse_mdl.cpp" /* yacc.c:1661  */
    1603                 :          0 :     break;
    1604                 :            : 
    1605                 :            :   case 15:
    1606                 :            : #line 184 "parse_mdl.y" /* yacc.c:1661  */
    1607                 :            :     { }
    1608                 :            : #line 1609 "parse_mdl.cpp" /* yacc.c:1661  */
    1609                 :          0 :     break;
    1610                 :            : 
    1611                 :            :   case 16:
    1612                 :            : #line 185 "parse_mdl.y" /* yacc.c:1661  */
    1613                 :            :     {
    1614                 :            :   }
    1615                 :            : #line 1616 "parse_mdl.cpp" /* yacc.c:1661  */
    1616                 :          0 :     break;
    1617                 :            : 
    1618                 :            :   case 19:
    1619                 :            : #line 194 "parse_mdl.y" /* yacc.c:1661  */
    1620                 :            :     { }
    1621                 :            : #line 1622 "parse_mdl.cpp" /* yacc.c:1661  */
    1622                 :          0 :     break;
    1623                 :            : 
    1624                 :            :   case 20:
    1625                 :            : #line 195 "parse_mdl.y" /* yacc.c:1661  */
    1626                 :            :     {
    1627                 :            :   }
    1628                 :            : #line 1629 "parse_mdl.cpp" /* yacc.c:1661  */
    1629                 :          0 :     break;
    1630                 :            : 
    1631                 :            :   case 21:
    1632                 :            : #line 200 "parse_mdl.y" /* yacc.c:1661  */
    1633                 :            :     {
    1634                 :            :     (yyval.lcontent) = NULL;
    1635                 :            :   }
    1636                 :            : #line 1637 "parse_mdl.cpp" /* yacc.c:1661  */
    1637                 :          0 :     break;
    1638                 :            : 
    1639                 :            :   case 22:
    1640                 :            : #line 203 "parse_mdl.y" /* yacc.c:1661  */
    1641                 :            :     {
    1642                 :            :     (yyval.lcontent) = NULL;
    1643                 :            :   }
    1644                 :            : #line 1645 "parse_mdl.cpp" /* yacc.c:1661  */
    1645                 :          0 :     break;
    1646                 :            : 
    1647                 :            :   case 23:
    1648                 :            : #line 206 "parse_mdl.y" /* yacc.c:1661  */
    1649                 :            :     {
    1650                 :            :     (yyval.lcontent) = NULL;
    1651                 :            :   }
    1652                 :            : #line 1653 "parse_mdl.cpp" /* yacc.c:1661  */
    1653                 :          0 :     break;
    1654                 :            : 
    1655                 :            :   case 24:
    1656                 :            : #line 209 "parse_mdl.y" /* yacc.c:1661  */
    1657                 :            :     {
    1658                 :            :     (yyval.lcontent) = NULL;
    1659                 :            :   }
    1660                 :            : #line 1661 "parse_mdl.cpp" /* yacc.c:1661  */
    1661                 :          0 :     break;
    1662                 :            : 
    1663                 :            :   case 25:
    1664                 :            : #line 212 "parse_mdl.y" /* yacc.c:1661  */
    1665                 :            :     {
    1666                 :            :     (yyval.lcontent) = NULL;
    1667                 :            :   }
    1668                 :            : #line 1669 "parse_mdl.cpp" /* yacc.c:1661  */
    1669                 :          0 :     break;
    1670                 :            : 
    1671                 :            :   case 26:
    1672                 :            : #line 215 "parse_mdl.y" /* yacc.c:1661  */
    1673                 :            :     {
    1674                 :            :     (yyval.lcontent) = (struct mdl_lcontent_t *) calloc (sizeof (struct mdl_lcontent_t), 1);
    1675                 :            :     (yyval.lcontent)->type = t_TABLE;
    1676                 :            :     (yyval.lcontent)->table = (yyvsp[0].table);
    1677                 :            :   }
    1678                 :            : #line 1679 "parse_mdl.cpp" /* yacc.c:1661  */
    1679                 :          0 :     break;
    1680                 :            : 
    1681                 :            :   case 27:
    1682                 :            : #line 220 "parse_mdl.y" /* yacc.c:1661  */
    1683                 :            :     {
    1684                 :            :     (yyval.lcontent) = (struct mdl_lcontent_t *) calloc (sizeof (struct mdl_lcontent_t), 1);
    1685                 :            :     (yyval.lcontent)->type = t_LINK;
    1686                 :            :     (yyval.lcontent)->link = (yyvsp[0].link);
    1687                 :            :   }
    1688                 :            : #line 1689 "parse_mdl.cpp" /* yacc.c:1661  */
    1689                 :          0 :     break;
    1690                 :            : 
    1691                 :            :   case 28:
    1692                 :            : #line 225 "parse_mdl.y" /* yacc.c:1661  */
    1693                 :            :     {
    1694                 :            :     (yyval.lcontent) = (struct mdl_lcontent_t *) calloc (sizeof (struct mdl_lcontent_t), 1);
    1695                 :            :     (yyval.lcontent)->type = t_DATA;
    1696                 :            :     (yyval.lcontent)->data = (yyvsp[0].data);
    1697                 :            :   }
    1698                 :            : #line 1699 "parse_mdl.cpp" /* yacc.c:1661  */
    1699                 :          0 :     break;
    1700                 :            : 
    1701                 :            :   case 29:
    1702                 :            : #line 232 "parse_mdl.y" /* yacc.c:1661  */
    1703                 :            :     { (yyval.lcontent) = NULL; }
    1704                 :            : #line 1705 "parse_mdl.cpp" /* yacc.c:1661  */
    1705                 :          0 :     break;
    1706                 :            : 
    1707                 :            :   case 30:
    1708                 :            : #line 233 "parse_mdl.y" /* yacc.c:1661  */
    1709                 :            :     {
    1710                 :            :     if ((yyvsp[-1].lcontent)) {
    1711                 :            :       (yyvsp[-1].lcontent)->next = (yyvsp[0].lcontent);
    1712                 :            :       (yyval.lcontent) = (yyvsp[-1].lcontent);
    1713                 :            :     } else {
    1714                 :            :       (yyval.lcontent) = (yyvsp[0].lcontent);
    1715                 :            :     }
    1716                 :            :   }
    1717                 :            : #line 1718 "parse_mdl.cpp" /* yacc.c:1661  */
    1718                 :          0 :     break;
    1719                 :            : 
    1720                 :            :   case 31:
    1721                 :            : #line 244 "parse_mdl.y" /* yacc.c:1661  */
    1722                 :            :     {
    1723                 :            :     (yyval.dcontent) = NULL;
    1724                 :            :   }
    1725                 :            : #line 1726 "parse_mdl.cpp" /* yacc.c:1661  */
    1726                 :          0 :     break;
    1727                 :            : 
    1728                 :            :   case 32:
    1729                 :            : #line 247 "parse_mdl.y" /* yacc.c:1661  */
    1730                 :            :     {
    1731                 :            :     (yyval.dcontent) = NULL;
    1732                 :            :   }
    1733                 :            : #line 1734 "parse_mdl.cpp" /* yacc.c:1661  */
    1734                 :          0 :     break;
    1735                 :            : 
    1736                 :            :   case 33:
    1737                 :            : #line 250 "parse_mdl.y" /* yacc.c:1661  */
    1738                 :            :     {
    1739                 :            :     (yyval.dcontent) = NULL;
    1740                 :            :   }
    1741                 :            : #line 1742 "parse_mdl.cpp" /* yacc.c:1661  */
    1742                 :          0 :     break;
    1743                 :            : 
    1744                 :            :   case 34:
    1745                 :            : #line 253 "parse_mdl.y" /* yacc.c:1661  */
    1746                 :            :     {
    1747                 :            :     (yyval.dcontent) = NULL;
    1748                 :            :   }
    1749                 :            : #line 1750 "parse_mdl.cpp" /* yacc.c:1661  */
    1750                 :          0 :     break;
    1751                 :            : 
    1752                 :            :   case 35:
    1753                 :            : #line 256 "parse_mdl.y" /* yacc.c:1661  */
    1754                 :            :     {
    1755                 :            :     (yyval.dcontent) = NULL;
    1756                 :            :   }
    1757                 :            : #line 1758 "parse_mdl.cpp" /* yacc.c:1661  */
    1758                 :          0 :     break;
    1759                 :            : 
    1760                 :            :   case 36:
    1761                 :            : #line 259 "parse_mdl.y" /* yacc.c:1661  */
    1762                 :            :     {
    1763                 :            :     (yyval.dcontent) = NULL;
    1764                 :            :   }
    1765                 :            : #line 1766 "parse_mdl.cpp" /* yacc.c:1661  */
    1766                 :          0 :     break;
    1767                 :            : 
    1768                 :            :   case 37:
    1769                 :            : #line 262 "parse_mdl.y" /* yacc.c:1661  */
    1770                 :            :     {
    1771                 :            :     (yyval.dcontent) = NULL;
    1772                 :            :   }
    1773                 :            : #line 1774 "parse_mdl.cpp" /* yacc.c:1661  */
    1774                 :          0 :     break;
    1775                 :            : 
    1776                 :            :   case 38:
    1777                 :            : #line 265 "parse_mdl.y" /* yacc.c:1661  */
    1778                 :            :     {
    1779                 :            :     (yyval.dcontent) = NULL;
    1780                 :            :   }
    1781                 :            : #line 1782 "parse_mdl.cpp" /* yacc.c:1661  */
    1782                 :          0 :     break;
    1783                 :            : 
    1784                 :            :   case 39:
    1785                 :            : #line 268 "parse_mdl.y" /* yacc.c:1661  */
    1786                 :            :     {
    1787                 :            :     (yyval.dcontent) = NULL;
    1788                 :            :   }
    1789                 :            : #line 1790 "parse_mdl.cpp" /* yacc.c:1661  */
    1790                 :          0 :     break;
    1791                 :            : 
    1792                 :            :   case 40:
    1793                 :            : #line 271 "parse_mdl.y" /* yacc.c:1661  */
    1794                 :            :     {
    1795                 :            :     (yyval.dcontent) = NULL;
    1796                 :            :   }
    1797                 :            : #line 1798 "parse_mdl.cpp" /* yacc.c:1661  */
    1798                 :          0 :     break;
    1799                 :            : 
    1800                 :            :   case 41:
    1801                 :            : #line 274 "parse_mdl.y" /* yacc.c:1661  */
    1802                 :            :     {
    1803                 :            :     (yyval.dcontent) = NULL;
    1804                 :            :   }
    1805                 :            : #line 1806 "parse_mdl.cpp" /* yacc.c:1661  */
    1806                 :          0 :     break;
    1807                 :            : 
    1808                 :            :   case 42:
    1809                 :            : #line 277 "parse_mdl.y" /* yacc.c:1661  */
    1810                 :            :     {
    1811                 :            :     (yyval.dcontent) = NULL;
    1812                 :            :   }
    1813                 :            : #line 1814 "parse_mdl.cpp" /* yacc.c:1661  */
    1814                 :          0 :     break;
    1815                 :            : 
    1816                 :            :   case 43:
    1817                 :            : #line 280 "parse_mdl.y" /* yacc.c:1661  */
    1818                 :            :     {
    1819                 :            :     (yyval.dcontent) = (struct mdl_dcontent_t *) calloc (sizeof (struct mdl_dcontent_t), 1);
    1820                 :            :     (yyval.dcontent)->type = t_HYPTABLE;
    1821                 :            :     (yyval.dcontent)->hyptable = (yyvsp[0].hyptable);
    1822                 :            :   }
    1823                 :            : #line 1824 "parse_mdl.cpp" /* yacc.c:1661  */
    1824                 :          0 :     break;
    1825                 :            : 
    1826                 :            :   case 44:
    1827                 :            : #line 285 "parse_mdl.y" /* yacc.c:1661  */
    1828                 :            :     {
    1829                 :            :     (yyval.dcontent) = (struct mdl_dcontent_t *) calloc (sizeof (struct mdl_dcontent_t), 1);
    1830                 :            :     (yyval.dcontent)->type = t_DATASET;
    1831                 :            :     (yyval.dcontent)->data = (yyvsp[0].dset);
    1832                 :            :   }
    1833                 :            : #line 1834 "parse_mdl.cpp" /* yacc.c:1661  */
    1834                 :          0 :     break;
    1835                 :            : 
    1836                 :            :   case 45:
    1837                 :            : #line 290 "parse_mdl.y" /* yacc.c:1661  */
    1838                 :            :     {
    1839                 :            :     (yyval.dcontent) = NULL;
    1840                 :            :   }
    1841                 :            : #line 1842 "parse_mdl.cpp" /* yacc.c:1661  */
    1842                 :          0 :     break;
    1843                 :            : 
    1844                 :            :   case 46:
    1845                 :            : #line 293 "parse_mdl.y" /* yacc.c:1661  */
    1846                 :            :     {
    1847                 :            :     (yyval.dcontent) = NULL;
    1848                 :            :   }
    1849                 :            : #line 1850 "parse_mdl.cpp" /* yacc.c:1661  */
    1850                 :          0 :     break;
    1851                 :            : 
    1852                 :            :   case 47:
    1853                 :            : #line 298 "parse_mdl.y" /* yacc.c:1661  */
    1854                 :            :     { (yyval.dcontent) = NULL; }
    1855                 :            : #line 1856 "parse_mdl.cpp" /* yacc.c:1661  */
    1856                 :          0 :     break;
    1857                 :            : 
    1858                 :            :   case 48:
    1859                 :            : #line 299 "parse_mdl.y" /* yacc.c:1661  */
    1860                 :            :     {
    1861                 :            :     if ((yyvsp[-1].dcontent)) {
    1862                 :            :       (yyvsp[-1].dcontent)->next = (yyvsp[0].dcontent);
    1863                 :            :       (yyval.dcontent) = (yyvsp[-1].dcontent);
    1864                 :            :     } else {
    1865                 :            :       (yyval.dcontent) = (yyvsp[0].dcontent);
    1866                 :            :     }
    1867                 :            :   }
    1868                 :            : #line 1869 "parse_mdl.cpp" /* yacc.c:1661  */
    1869                 :          0 :     break;
    1870                 :            : 
    1871                 :            :   case 52:
    1872                 :            : #line 315 "parse_mdl.y" /* yacc.c:1661  */
    1873                 :            :     { }
    1874                 :            : #line 1875 "parse_mdl.cpp" /* yacc.c:1661  */
    1875                 :          0 :     break;
    1876                 :            : 
    1877                 :            :   case 53:
    1878                 :            : #line 316 "parse_mdl.y" /* yacc.c:1661  */
    1879                 :            :     {
    1880                 :            :   }
    1881                 :            : #line 1882 "parse_mdl.cpp" /* yacc.c:1661  */
    1882                 :          0 :     break;
    1883                 :            : 
    1884                 :            :   case 54:
    1885                 :            : #line 321 "parse_mdl.y" /* yacc.c:1661  */
    1886                 :            :     {
    1887                 :            :     (yyval.dset) = (struct mdl_dataset_t *) calloc (sizeof (struct mdl_dataset_t), 1);
    1888                 :            :     (yyval.dset)->dsize = (yyvsp[-2].dsize);
    1889                 :            :     (yyval.dset)->type1 = (yyvsp[-1].ident);
    1890                 :            :     (yyval.dset)->data1 = (yyvsp[0].point);
    1891                 :            :   }
    1892                 :            : #line 1893 "parse_mdl.cpp" /* yacc.c:1661  */
    1893                 :          0 :     break;
    1894                 :            : 
    1895                 :            :   case 55:
    1896                 :            : #line 327 "parse_mdl.y" /* yacc.c:1661  */
    1897                 :            :     {
    1898                 :            :     (yyval.dset) = (struct mdl_dataset_t *) calloc (sizeof (struct mdl_dataset_t), 1);
    1899                 :            :     (yyval.dset)->dsize = (yyvsp[-4].dsize);
    1900                 :            :     (yyval.dset)->type1 = (yyvsp[-3].ident);
    1901                 :            :     (yyval.dset)->data1 = (yyvsp[-2].point);
    1902                 :            :     (yyval.dset)->type2 = (yyvsp[-1].ident);
    1903                 :            :     (yyval.dset)->data2 = (yyvsp[0].point);
    1904                 :            :   }
    1905                 :            : #line 1906 "parse_mdl.cpp" /* yacc.c:1661  */
    1906                 :          0 :     break;
    1907                 :            : 
    1908                 :            :   case 57:
    1909                 :            : #line 341 "parse_mdl.y" /* yacc.c:1661  */
    1910                 :            :     { (yyval.point) = NULL; }
    1911                 :            : #line 1912 "parse_mdl.cpp" /* yacc.c:1661  */
    1912                 :          0 :     break;
    1913                 :            : 
    1914                 :            :   case 58:
    1915                 :            : #line 342 "parse_mdl.y" /* yacc.c:1661  */
    1916                 :            :     {
    1917                 :            :     (yyvsp[-1].point)->next = (yyvsp[0].point);
    1918                 :            :     (yyval.point) = (yyvsp[-1].point);
    1919                 :            :   }
    1920                 :            : #line 1921 "parse_mdl.cpp" /* yacc.c:1661  */
    1921                 :          0 :     break;
    1922                 :            : 
    1923                 :            :   case 59:
    1924                 :            : #line 349 "parse_mdl.y" /* yacc.c:1661  */
    1925                 :            :     {
    1926                 :            :     (yyval.element) = (struct mdl_element_t *) calloc (sizeof (struct mdl_element_t), 1);
    1927                 :            :     (yyval.element)->number = (int) (yyvsp[-3].f);
    1928                 :            :     (yyval.element)->name = (yyvsp[-2].ident);
    1929                 :            :     (yyval.element)->value = (yyvsp[-1].ident);
    1930                 :            :     (yyval.element)->attr = (yyvsp[0].ident);
    1931                 :            :   }
    1932                 :            : #line 1933 "parse_mdl.cpp" /* yacc.c:1661  */
    1933                 :          0 :     break;
    1934                 :            : 
    1935                 :            :   case 60:
    1936                 :            : #line 356 "parse_mdl.y" /* yacc.c:1661  */
    1937                 :            :     {
    1938                 :            :     (yyval.element) = (struct mdl_element_t *) calloc (sizeof (struct mdl_element_t), 1);
    1939                 :            :     (yyval.element)->number = (int) (yyvsp[-2].f);
    1940                 :            :     (yyval.element)->name = (yyvsp[-1].ident);
    1941                 :            :     (yyval.element)->value = (yyvsp[0].ident);
    1942                 :            :   }
    1943                 :            : #line 1944 "parse_mdl.cpp" /* yacc.c:1661  */
    1944                 :          0 :     break;
    1945                 :            : 
    1946                 :            :   case 61:
    1947                 :            : #line 362 "parse_mdl.y" /* yacc.c:1661  */
    1948                 :            :     {
    1949                 :            :     (yyval.element) = (struct mdl_element_t *) calloc (sizeof (struct mdl_element_t), 1);
    1950                 :            :     (yyval.element)->name = (yyvsp[-1].ident);
    1951                 :            :     (yyval.element)->value = (yyvsp[0].ident);
    1952                 :            :   }
    1953                 :            : #line 1954 "parse_mdl.cpp" /* yacc.c:1661  */
    1954                 :          0 :     break;
    1955                 :            : 
    1956                 :            :   case 62:
    1957                 :            : #line 370 "parse_mdl.y" /* yacc.c:1661  */
    1958                 :            :     {
    1959                 :            :     free ((yyvsp[-2].ident));
    1960                 :            :     free ((yyvsp[0].ident));
    1961                 :            :   }
    1962                 :            : #line 1963 "parse_mdl.cpp" /* yacc.c:1661  */
    1963                 :          0 :     break;
    1964                 :            : 
    1965                 :            :   case 63:
    1966                 :            : #line 377 "parse_mdl.y" /* yacc.c:1661  */
    1967                 :            :     {
    1968                 :            :     (yyval.table) = (struct mdl_table_t *) calloc (sizeof (struct mdl_table_t), 1);
    1969                 :            :     (yyval.table)->name = (yyvsp[-3].ident);
    1970                 :            :     (yyval.table)->data = (yyvsp[-1].element);
    1971                 :            :   }
    1972                 :            : #line 1973 "parse_mdl.cpp" /* yacc.c:1661  */
    1973                 :          0 :     break;
    1974                 :            : 
    1975                 :            :   case 64:
    1976                 :            : #line 382 "parse_mdl.y" /* yacc.c:1661  */
    1977                 :            :     {
    1978                 :            :     (yyval.table) = (struct mdl_table_t *) calloc (sizeof (struct mdl_table_t), 1);
    1979                 :            :     (yyval.table)->name = (yyvsp[-4].ident);
    1980                 :            :     (yyval.table)->data = (yyvsp[-1].element);
    1981                 :            :   }
    1982                 :            : #line 1983 "parse_mdl.cpp" /* yacc.c:1661  */
    1983                 :          0 :     break;
    1984                 :            : 
    1985                 :            :   case 65:
    1986                 :            : #line 387 "parse_mdl.y" /* yacc.c:1661  */
    1987                 :            :     {
    1988                 :            :     (yyval.table) = (struct mdl_table_t *) calloc (sizeof (struct mdl_table_t), 1);
    1989                 :            :   }
    1990                 :            : #line 1991 "parse_mdl.cpp" /* yacc.c:1661  */
    1991                 :          0 :     break;
    1992                 :            : 
    1993                 :            :   case 66:
    1994                 :            : #line 393 "parse_mdl.y" /* yacc.c:1661  */
    1995                 :            :     {
    1996                 :            :     (yyval.link) = (struct mdl_link_t *) calloc (sizeof (struct mdl_link_t), 1);
    1997                 :            :     (yyval.link)->name = (yyvsp[-3].ident);
    1998                 :            :     (yyval.link)->type = (yyvsp[-4].ident);
    1999                 :            :     (yyval.link)->content = (yyvsp[-1].lcontent);
    2000                 :            :   }
    2001                 :            : #line 2002 "parse_mdl.cpp" /* yacc.c:1661  */
    2002                 :          0 :     break;
    2003                 :            : 
    2004                 :            :   case 67:
    2005                 :            : #line 402 "parse_mdl.y" /* yacc.c:1661  */
    2006                 :            :     {
    2007                 :            :     (yyval.data) = (struct mdl_data_t *) calloc (sizeof (struct mdl_data_t), 1);
    2008                 :            :     (yyval.data)->content = (yyvsp[-1].dcontent);
    2009                 :            :   }
    2010                 :            : #line 2011 "parse_mdl.cpp" /* yacc.c:1661  */
    2011                 :          0 :     break;
    2012                 :            : 
    2013                 :            :   case 68:
    2014                 :            : #line 409 "parse_mdl.y" /* yacc.c:1661  */
    2015                 :            :     {
    2016                 :            :     free ((yyvsp[-3].ident));
    2017                 :            :   }
    2018                 :            : #line 2019 "parse_mdl.cpp" /* yacc.c:1661  */
    2019                 :          0 :     break;
    2020                 :            : 
    2021                 :            :   case 70:
    2022                 :            : #line 419 "parse_mdl.y" /* yacc.c:1661  */
    2023                 :            :     {
    2024                 :            :     free ((yyvsp[-2].ident));
    2025                 :            :   }
    2026                 :            : #line 2027 "parse_mdl.cpp" /* yacc.c:1661  */
    2027                 :          0 :     break;
    2028                 :            : 
    2029                 :            :   case 71:
    2030                 :            : #line 425 "parse_mdl.y" /* yacc.c:1661  */
    2031                 :            :     {
    2032                 :            :     free ((yyvsp[-3].ident));
    2033                 :            :   }
    2034                 :            : #line 2035 "parse_mdl.cpp" /* yacc.c:1661  */
    2035                 :          0 :     break;
    2036                 :            : 
    2037                 :            :   case 72:
    2038                 :            : #line 431 "parse_mdl.y" /* yacc.c:1661  */
    2039                 :            :     {
    2040                 :            :   }
    2041                 :            : #line 2042 "parse_mdl.cpp" /* yacc.c:1661  */
    2042                 :          0 :     break;
    2043                 :            : 
    2044                 :            :   case 73:
    2045                 :            : #line 436 "parse_mdl.y" /* yacc.c:1661  */
    2046                 :            :     {
    2047                 :            :     free ((yyvsp[-3].ident));
    2048                 :            :   }
    2049                 :            : #line 2050 "parse_mdl.cpp" /* yacc.c:1661  */
    2050                 :          0 :     break;
    2051                 :            : 
    2052                 :            :   case 74:
    2053                 :            : #line 443 "parse_mdl.y" /* yacc.c:1661  */
    2054                 :            :     {
    2055                 :            :   }
    2056                 :            : #line 2057 "parse_mdl.cpp" /* yacc.c:1661  */
    2057                 :          0 :     break;
    2058                 :            : 
    2059                 :            :   case 75:
    2060                 :            : #line 448 "parse_mdl.y" /* yacc.c:1661  */
    2061                 :            :     {
    2062                 :            :   }
    2063                 :            : #line 2064 "parse_mdl.cpp" /* yacc.c:1661  */
    2064                 :          0 :     break;
    2065                 :            : 
    2066                 :            :   case 76:
    2067                 :            : #line 452 "parse_mdl.y" /* yacc.c:1661  */
    2068                 :            :     { }
    2069                 :            : #line 2070 "parse_mdl.cpp" /* yacc.c:1661  */
    2070                 :          0 :     break;
    2071                 :            : 
    2072                 :            :   case 77:
    2073                 :            : #line 453 "parse_mdl.y" /* yacc.c:1661  */
    2074                 :            :     {
    2075                 :            :   }
    2076                 :            : #line 2077 "parse_mdl.cpp" /* yacc.c:1661  */
    2077                 :          0 :     break;
    2078                 :            : 
    2079                 :            :   case 78:
    2080                 :            : #line 458 "parse_mdl.y" /* yacc.c:1661  */
    2081                 :            :     {
    2082                 :            :   }
    2083                 :            : #line 2084 "parse_mdl.cpp" /* yacc.c:1661  */
    2084                 :          0 :     break;
    2085                 :            : 
    2086                 :            :   case 79:
    2087                 :            : #line 463 "parse_mdl.y" /* yacc.c:1661  */
    2088                 :            :     {
    2089                 :            :   }
    2090                 :            : #line 2091 "parse_mdl.cpp" /* yacc.c:1661  */
    2091                 :          0 :     break;
    2092                 :            : 
    2093                 :            :   case 80:
    2094                 :            : #line 468 "parse_mdl.y" /* yacc.c:1661  */
    2095                 :            :     {
    2096                 :            :     free ((yyvsp[-3].ident));
    2097                 :            :   }
    2098                 :            : #line 2099 "parse_mdl.cpp" /* yacc.c:1661  */
    2099                 :          0 :     break;
    2100                 :            : 
    2101                 :            :   case 81:
    2102                 :            : #line 474 "parse_mdl.y" /* yacc.c:1661  */
    2103                 :            :     {
    2104                 :            :     free ((yyvsp[-1].ident));
    2105                 :            :   }
    2106                 :            : #line 2107 "parse_mdl.cpp" /* yacc.c:1661  */
    2107                 :          0 :     break;
    2108                 :            : 
    2109                 :            :   case 82:
    2110                 :            : #line 480 "parse_mdl.y" /* yacc.c:1661  */
    2111                 :            :     {
    2112                 :            :     (yyval.hyptable) = (struct mdl_hyptable_t *) calloc (sizeof (struct mdl_hyptable_t), 1);
    2113                 :            :     (yyval.hyptable)->name = (yyvsp[-3].ident);
    2114                 :            :     (yyval.hyptable)->data = (yyvsp[-1].element);
    2115                 :            :   }
    2116                 :            : #line 2117 "parse_mdl.cpp" /* yacc.c:1661  */
    2117                 :          0 :     break;
    2118                 :            : 
    2119                 :            :   case 83:
    2120                 :            : #line 488 "parse_mdl.y" /* yacc.c:1661  */
    2121                 :            :     {
    2122                 :            :     (yyval.dset) = (yyvsp[-1].dset);
    2123                 :            :   }
    2124                 :            : #line 2125 "parse_mdl.cpp" /* yacc.c:1661  */
    2125                 :          0 :     break;
    2126                 :            : 
    2127                 :            :   case 84:
    2128                 :            : #line 494 "parse_mdl.y" /* yacc.c:1661  */
    2129                 :            :     {
    2130                 :            :     (yyval.dsize) = (struct mdl_datasize_t *) calloc (sizeof (struct mdl_datasize_t), 1);
    2131                 :            :     (yyval.dsize)->type = (yyvsp[-3].ident);
    2132                 :            :     (yyval.dsize)->size = (int) (yyvsp[-2].f);
    2133                 :            :     (yyval.dsize)->x = (int) (yyvsp[-1].f);
    2134                 :            :     (yyval.dsize)->y = (int) (yyvsp[0].f);
    2135                 :            :   }
    2136                 :            : #line 2137 "parse_mdl.cpp" /* yacc.c:1661  */
    2137                 :          0 :     break;
    2138                 :            : 
    2139                 :            :   case 85:
    2140                 :            : #line 504 "parse_mdl.y" /* yacc.c:1661  */
    2141                 :            :     {
    2142                 :            :     (yyval.ident) = (yyvsp[0].ident);
    2143                 :            :   }
    2144                 :            : #line 2145 "parse_mdl.cpp" /* yacc.c:1661  */
    2145                 :          0 :     break;
    2146                 :            : 
    2147                 :            :   case 86:
    2148                 :            : #line 510 "parse_mdl.y" /* yacc.c:1661  */
    2149                 :            :     {
    2150                 :            :     (yyval.point) = (struct mdl_point_t *) calloc (sizeof (struct mdl_point_t), 1);
    2151                 :            :     (yyval.point)->n = (int) (yyvsp[-4].f);
    2152                 :            :     (yyval.point)->x = (int) (yyvsp[-3].f);
    2153                 :            :     (yyval.point)->y = (int) (yyvsp[-2].f);
    2154                 :            :     (yyval.point)->r = (yyvsp[-1].f);
    2155                 :            :     (yyval.point)->i = (yyvsp[0].f);
    2156                 :            :   }
    2157                 :            : #line 2158 "parse_mdl.cpp" /* yacc.c:1661  */
    2158                 :          0 :     break;
    2159                 :            : 
    2160                 :            :   case 87:
    2161                 :            : #line 521 "parse_mdl.y" /* yacc.c:1661  */
    2162                 :            :     {
    2163                 :            :     free ((yyvsp[-1].ident));
    2164                 :            :     free ((yyvsp[0].ident));
    2165                 :            :   }
    2166                 :            : #line 2167 "parse_mdl.cpp" /* yacc.c:1661  */
    2167                 :          0 :     break;
    2168                 :            : 
    2169                 :            :   case 88:
    2170                 :            : #line 528 "parse_mdl.y" /* yacc.c:1661  */
    2171                 :            :     {
    2172                 :            :     free ((yyvsp[-1].ident));
    2173                 :            :   }
    2174                 :            : #line 2175 "parse_mdl.cpp" /* yacc.c:1661  */
    2175                 :          0 :     break;
    2176                 :            : 
    2177                 :            :   case 89:
    2178                 :            : #line 534 "parse_mdl.y" /* yacc.c:1661  */
    2179                 :            :     {
    2180                 :            :     free ((yyvsp[-2].ident));
    2181                 :            :     free ((yyvsp[-1].ident));
    2182                 :            :     free ((yyvsp[0].ident));
    2183                 :            :   }
    2184                 :            : #line 2185 "parse_mdl.cpp" /* yacc.c:1661  */
    2185                 :          0 :     break;
    2186                 :            : 
    2187                 :            :   case 90:
    2188                 :            : #line 539 "parse_mdl.y" /* yacc.c:1661  */
    2189                 :            :     {
    2190                 :            :     free ((yyvsp[-1].ident));
    2191                 :            :     free ((yyvsp[0].ident));
    2192                 :            :   }
    2193                 :            : #line 2194 "parse_mdl.cpp" /* yacc.c:1661  */
    2194                 :          0 :     break;
    2195                 :            : 
    2196                 :            :   case 91:
    2197                 :            : #line 546 "parse_mdl.y" /* yacc.c:1661  */
    2198                 :            :     {
    2199                 :            :     free ((yyvsp[-5].ident));
    2200                 :            :     free ((yyvsp[-3].ident));
    2201                 :            :     free ((yyvsp[-2].ident));
    2202                 :            :     free ((yyvsp[-1].ident));
    2203                 :            :     free ((yyvsp[0].ident));
    2204                 :            :   }
    2205                 :            : #line 2206 "parse_mdl.cpp" /* yacc.c:1661  */
    2206                 :          0 :     break;
    2207                 :            : 
    2208                 :            :   case 92:
    2209                 :            : #line 556 "parse_mdl.y" /* yacc.c:1661  */
    2210                 :            :     {
    2211                 :            :     free ((yyvsp[-5].ident));
    2212                 :            :     free ((yyvsp[-3].ident));
    2213                 :            :     free ((yyvsp[-2].ident));
    2214                 :            :     free ((yyvsp[-1].ident));
    2215                 :            :     free ((yyvsp[0].ident));
    2216                 :            :   }
    2217                 :            : #line 2218 "parse_mdl.cpp" /* yacc.c:1661  */
    2218                 :          0 :     break;
    2219                 :            : 
    2220                 :            :   case 93:
    2221                 :            : #line 566 "parse_mdl.y" /* yacc.c:1661  */
    2222                 :            :     {
    2223                 :            :     free ((yyvsp[-1].ident));
    2224                 :            :   }
    2225                 :            : #line 2226 "parse_mdl.cpp" /* yacc.c:1661  */
    2226                 :          0 :     break;
    2227                 :            : 
    2228                 :            :   case 94:
    2229                 :            : #line 572 "parse_mdl.y" /* yacc.c:1661  */
    2230                 :            :     {
    2231                 :            :   }
    2232                 :            : #line 2233 "parse_mdl.cpp" /* yacc.c:1661  */
    2233                 :          0 :     break;
    2234                 :            : 
    2235                 :            :   case 95:
    2236                 :            : #line 577 "parse_mdl.y" /* yacc.c:1661  */
    2237                 :            :     {
    2238                 :            :   }
    2239                 :            : #line 2240 "parse_mdl.cpp" /* yacc.c:1661  */
    2240                 :          0 :     break;
    2241                 :            : 
    2242                 :            :   case 96:
    2243                 :            : #line 582 "parse_mdl.y" /* yacc.c:1661  */
    2244                 :            :     {
    2245                 :            :     free ((yyvsp[-1].ident));
    2246                 :            :     free ((yyvsp[0].ident));
    2247                 :            :   }
    2248                 :            : #line 2249 "parse_mdl.cpp" /* yacc.c:1661  */
    2249                 :          0 :     break;
    2250                 :            : 
    2251                 :            :   case 97:
    2252                 :            : #line 589 "parse_mdl.y" /* yacc.c:1661  */
    2253                 :            :     {
    2254                 :            :     free ((yyvsp[-1].ident));
    2255                 :            :     free ((yyvsp[0].ident));
    2256                 :            :   }
    2257                 :            : #line 2258 "parse_mdl.cpp" /* yacc.c:1661  */
    2258                 :          0 :     break;
    2259                 :            : 
    2260                 :            :   case 98:
    2261                 :            : #line 596 "parse_mdl.y" /* yacc.c:1661  */
    2262                 :            :     {
    2263                 :            :     free ((yyvsp[-2].ident));
    2264                 :            :     free ((yyvsp[-1].ident));
    2265                 :            :     free ((yyvsp[0].ident));
    2266                 :            :   }
    2267                 :            : #line 2268 "parse_mdl.cpp" /* yacc.c:1661  */
    2268                 :          0 :     break;
    2269                 :            : 
    2270                 :            :   case 99:
    2271                 :            : #line 604 "parse_mdl.y" /* yacc.c:1661  */
    2272                 :            :     {
    2273                 :            :     free ((yyvsp[-2].ident));
    2274                 :            :     free ((yyvsp[-1].ident));
    2275                 :            :     free ((yyvsp[0].ident));
    2276                 :            :   }
    2277                 :            : #line 2278 "parse_mdl.cpp" /* yacc.c:1661  */
    2278                 :          0 :     break;
    2279                 :            : 
    2280                 :            :   case 100:
    2281                 :            : #line 612 "parse_mdl.y" /* yacc.c:1661  */
    2282                 :            :     {
    2283                 :            :     free ((yyvsp[-1].ident));
    2284                 :            :     free ((yyvsp[0].ident));
    2285                 :            :   }
    2286                 :            : #line 2287 "parse_mdl.cpp" /* yacc.c:1661  */
    2287                 :          0 :     break;
    2288                 :            : 
    2289                 :            : 
    2290                 :            : #line 2291 "parse_mdl.cpp" /* yacc.c:1661  */
    2291                 :          0 :       default: break;
    2292                 :            :     }
    2293                 :            :   /* User semantic actions sometimes alter yychar, and that requires
    2294                 :            :      that yytoken be updated with the new translation.  We take the
    2295                 :            :      approach of translating immediately before every use of yytoken.
    2296                 :            :      One alternative is translating here after every semantic action,
    2297                 :            :      but that translation would be missed if the semantic action invokes
    2298                 :            :      YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
    2299                 :            :      if it invokes YYBACKUP.  In the case of YYABORT or YYACCEPT, an
    2300                 :            :      incorrect destructor might then be invoked immediately.  In the
    2301                 :            :      case of YYERROR or YYBACKUP, subsequent parser actions might lead
    2302                 :            :      to an incorrect destructor call or verbose syntax error message
    2303                 :            :      before the lookahead is translated.  */
    2304 [ #  # ][ #  # ]:          0 :   YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
         [ #  # ][ #  # ]
    2305                 :            : 
    2306                 :          0 :   YYPOPSTACK (yylen);
    2307                 :          0 :   yylen = 0;
    2308 [ #  # ][ #  # ]:          0 :   YY_STACK_PRINT (yyss, yyssp);
    2309                 :            : 
    2310                 :          0 :   *++yyvsp = yyval;
    2311                 :            : 
    2312                 :            :   /* Now 'shift' the result of the reduction.  Determine what state
    2313                 :            :      that goes to, based on the state we popped back to and the rule
    2314                 :            :      number reduced by.  */
    2315                 :            : 
    2316                 :          0 :   yyn = yyr1[yyn];
    2317                 :            : 
    2318                 :          0 :   yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
    2319 [ #  # ][ #  # ]:          0 :   if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
                 [ #  # ]
    2320                 :          0 :     yystate = yytable[yystate];
    2321                 :            :   else
    2322                 :          0 :     yystate = yydefgoto[yyn - YYNTOKENS];
    2323                 :            : 
    2324                 :          0 :   goto yynewstate;
    2325                 :            : 
    2326                 :            : 
    2327                 :            : /*--------------------------------------.
    2328                 :            : | yyerrlab -- here on detecting error.  |
    2329                 :            : `--------------------------------------*/
    2330                 :            : yyerrlab:
    2331                 :            :   /* Make sure we have latest lookahead translation.  See comments at
    2332                 :            :      user semantic actions for why this is necessary.  */
    2333 [ #  # ][ #  # ]:          0 :   yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar);
    2334                 :            : 
    2335                 :            :   /* If not already recovering from an error, report this error.  */
    2336         [ #  # ]:          0 :   if (!yyerrstatus)
    2337                 :            :     {
    2338                 :          0 :       ++yynerrs;
    2339                 :            : #if ! YYERROR_VERBOSE
    2340                 :            :       yyerror (YY_("syntax error"));
    2341                 :            : #else
    2342                 :            : # define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \
    2343                 :            :                                         yyssp, yytoken)
    2344                 :            :       {
    2345                 :          0 :         char const *yymsgp = YY_("syntax error");
    2346                 :            :         int yysyntax_error_status;
    2347                 :          0 :         yysyntax_error_status = YYSYNTAX_ERROR;
    2348         [ #  # ]:          0 :         if (yysyntax_error_status == 0)
    2349                 :          0 :           yymsgp = yymsg;
    2350         [ #  # ]:          0 :         else if (yysyntax_error_status == 1)
    2351                 :            :           {
    2352         [ #  # ]:          0 :             if (yymsg != yymsgbuf)
    2353                 :          0 :               YYSTACK_FREE (yymsg);
    2354                 :          0 :             yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc);
    2355         [ #  # ]:          0 :             if (!yymsg)
    2356                 :            :               {
    2357                 :          0 :                 yymsg = yymsgbuf;
    2358                 :          0 :                 yymsg_alloc = sizeof yymsgbuf;
    2359                 :          0 :                 yysyntax_error_status = 2;
    2360                 :            :               }
    2361                 :            :             else
    2362                 :            :               {
    2363                 :          0 :                 yysyntax_error_status = YYSYNTAX_ERROR;
    2364                 :          0 :                 yymsgp = yymsg;
    2365                 :            :               }
    2366                 :            :           }
    2367         [ #  # ]:          0 :         yyerror (yymsgp);
    2368         [ #  # ]:          0 :         if (yysyntax_error_status == 2)
    2369                 :          0 :           goto yyexhaustedlab;
    2370                 :            :       }
    2371                 :            : # undef YYSYNTAX_ERROR
    2372                 :            : #endif
    2373                 :            :     }
    2374                 :            : 
    2375                 :            : 
    2376                 :            : 
    2377         [ #  # ]:          0 :   if (yyerrstatus == 3)
    2378                 :            :     {
    2379                 :            :       /* If just tried and failed to reuse lookahead token after an
    2380                 :            :          error, discard it.  */
    2381                 :            : 
    2382         [ #  # ]:          0 :       if (yychar <= YYEOF)
    2383                 :            :         {
    2384                 :            :           /* Return failure if at end of input.  */
    2385         [ #  # ]:          0 :           if (yychar == YYEOF)
    2386                 :          0 :             YYABORT;
    2387                 :            :         }
    2388                 :            :       else
    2389                 :            :         {
    2390                 :            :           yydestruct ("Error: discarding",
    2391         [ #  # ]:          0 :                       yytoken, &yylval);
    2392                 :          0 :           yychar = YYEMPTY;
    2393                 :            :         }
    2394                 :            :     }
    2395                 :            : 
    2396                 :            :   /* Else will try to reuse lookahead token after shifting the error
    2397                 :            :      token.  */
    2398                 :          0 :   goto yyerrlab1;
    2399                 :            : 
    2400                 :            : 
    2401                 :            : /*---------------------------------------------------.
    2402                 :            : | yyerrorlab -- error raised explicitly by YYERROR.  |
    2403                 :            : `---------------------------------------------------*/
    2404                 :            : yyerrorlab:
    2405                 :            : 
    2406                 :            :   /* Pacify compilers like GCC when the user code never invokes
    2407                 :            :      YYERROR and the label yyerrorlab therefore never appears in user
    2408                 :            :      code.  */
    2409                 :            :   if (/*CONSTCOND*/ 0)
    2410                 :            :      goto yyerrorlab;
    2411                 :            : 
    2412                 :            :   /* Do not reclaim the symbols of the rule whose action triggered
    2413                 :            :      this YYERROR.  */
    2414                 :            :   YYPOPSTACK (yylen);
    2415                 :            :   yylen = 0;
    2416                 :            :   YY_STACK_PRINT (yyss, yyssp);
    2417                 :            :   yystate = *yyssp;
    2418                 :            :   goto yyerrlab1;
    2419                 :            : 
    2420                 :            : 
    2421                 :            : /*-------------------------------------------------------------.
    2422                 :            : | yyerrlab1 -- common code for both syntax error and YYERROR.  |
    2423                 :            : `-------------------------------------------------------------*/
    2424                 :            : yyerrlab1:
    2425                 :          0 :   yyerrstatus = 3;      /* Each real token shifted decrements this.  */
    2426                 :            : 
    2427                 :          0 :   for (;;)
    2428                 :            :     {
    2429                 :          0 :       yyn = yypact[yystate];
    2430         [ #  # ]:          0 :       if (!yypact_value_is_default (yyn))
    2431                 :            :         {
    2432                 :          0 :           yyn += YYTERROR;
    2433 [ #  # ][ #  # ]:          0 :           if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
                 [ #  # ]
    2434                 :            :             {
    2435                 :          0 :               yyn = yytable[yyn];
    2436         [ #  # ]:          0 :               if (0 < yyn)
    2437                 :          0 :                 break;
    2438                 :            :             }
    2439                 :            :         }
    2440                 :            : 
    2441                 :            :       /* Pop the current state because it cannot handle the error token.  */
    2442         [ #  # ]:          0 :       if (yyssp == yyss)
    2443                 :          0 :         YYABORT;
    2444                 :            : 
    2445                 :            : 
    2446                 :            :       yydestruct ("Error: popping",
    2447         [ #  # ]:          0 :                   yystos[yystate], yyvsp);
    2448                 :          0 :       YYPOPSTACK (1);
    2449                 :          0 :       yystate = *yyssp;
    2450 [ #  # ][ #  # ]:          0 :       YY_STACK_PRINT (yyss, yyssp);
    2451                 :            :     }
    2452                 :            : 
    2453                 :            :   YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
    2454                 :          0 :   *++yyvsp = yylval;
    2455                 :            :   YY_IGNORE_MAYBE_UNINITIALIZED_END
    2456                 :            : 
    2457                 :            : 
    2458                 :            :   /* Shift the error token.  */
    2459 [ #  # ][ #  # ]:          0 :   YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp);
         [ #  # ][ #  # ]
    2460                 :            : 
    2461                 :          0 :   yystate = yyn;
    2462                 :          0 :   goto yynewstate;
    2463                 :            : 
    2464                 :            : 
    2465                 :            : /*-------------------------------------.
    2466                 :            : | yyacceptlab -- YYACCEPT comes here.  |
    2467                 :            : `-------------------------------------*/
    2468                 :            : yyacceptlab:
    2469                 :          0 :   yyresult = 0;
    2470                 :          0 :   goto yyreturn;
    2471                 :            : 
    2472                 :            : /*-----------------------------------.
    2473                 :            : | yyabortlab -- YYABORT comes here.  |
    2474                 :            : `-----------------------------------*/
    2475                 :            : yyabortlab:
    2476                 :          0 :   yyresult = 1;
    2477                 :          0 :   goto yyreturn;
    2478                 :            : 
    2479                 :            : #if !defined yyoverflow || YYERROR_VERBOSE
    2480                 :            : /*-------------------------------------------------.
    2481                 :            : | yyexhaustedlab -- memory exhaustion comes here.  |
    2482                 :            : `-------------------------------------------------*/
    2483                 :            : yyexhaustedlab:
    2484         [ #  # ]:          0 :   yyerror (YY_("memory exhausted"));
    2485                 :          0 :   yyresult = 2;
    2486                 :            :   /* Fall through.  */
    2487                 :            : #endif
    2488                 :            : 
    2489                 :            : yyreturn:
    2490         [ #  # ]:          0 :   if (yychar != YYEMPTY)
    2491                 :            :     {
    2492                 :            :       /* Make sure we have latest lookahead translation.  See comments at
    2493                 :            :          user semantic actions for why this is necessary.  */
    2494         [ #  # ]:          0 :       yytoken = YYTRANSLATE (yychar);
    2495                 :            :       yydestruct ("Cleanup: discarding lookahead",
    2496         [ #  # ]:          0 :                   yytoken, &yylval);
    2497                 :            :     }
    2498                 :            :   /* Do not reclaim the symbols of the rule whose action triggered
    2499                 :            :      this YYABORT or YYACCEPT.  */
    2500                 :          0 :   YYPOPSTACK (yylen);
    2501 [ #  # ][ #  # ]:          0 :   YY_STACK_PRINT (yyss, yyssp);
    2502         [ #  # ]:          0 :   while (yyssp != yyss)
    2503                 :            :     {
    2504                 :            :       yydestruct ("Cleanup: popping",
    2505         [ #  # ]:          0 :                   yystos[*yyssp], yyvsp);
    2506                 :          0 :       YYPOPSTACK (1);
    2507                 :            :     }
    2508                 :            : #ifndef yyoverflow
    2509         [ #  # ]:          0 :   if (yyss != yyssa)
    2510                 :          0 :     YYSTACK_FREE (yyss);
    2511                 :            : #endif
    2512                 :            : #if YYERROR_VERBOSE
    2513         [ #  # ]:          0 :   if (yymsg != yymsgbuf)
    2514                 :          0 :     YYSTACK_FREE (yymsg);
    2515                 :            : #endif
    2516                 :          0 :   return yyresult;
    2517                 :            : }
    2518                 :            : #line 618 "parse_mdl.y" /* yacc.c:1906  */
    2519                 :            : 
    2520                 :            : 
    2521                 :            : int mdl_error (const char * error) {
    2522                 :            :   fprintf (stderr, "line %d: %s\n", mdl_lineno, error);
    2523                 :            :   return 0;
    2524                 :            : }

Generated by: LCOV version 1.11