Newer
Older
/* A Bison parser, made by GNU Bison 2.0. */
/* Skeleton parser for Yacc-like parsing with Bison,
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
/* As a special exception, when this file is copied by Bison into a
Bison output file, you may use that output file without restriction.
This special exception was added by the Free Software Foundation
in version 1.24 of Bison. */
/* Written by Richard Stallman by simplifying the original so called
``semantic'' parser. */
/* All symbols defined below should begin with yy or YY, to avoid
infringing on user name space. This should be done even for local
variables, as they might otherwise be expanded by user macros.
There are some unavoidable exceptions within include files to
define necessary library symbols; they are noted "INFRINGES ON
USER NAME SPACE" below. */
/* Identify Bison output. */
#define YYBISON 1
/* Skeleton name. */
#define YYSKELETON_NAME "yacc.c"
/* Pure parsers. */
#define YYPURE 0
/* Using locations. */
#define YYLSP_NEEDED 0
/* Tokens. */
#ifndef YYTOKENTYPE
# define YYTOKENTYPE
/* Put the tokens into the symbol table, so that GDB and other debuggers
know about them. */
enum yytokentype {
tDOUBLE = 258,
tSTRING = 259,
tBIGSTR = 260,
tEND = 261,
tAFFECT = 262,
tDOTS = 263,
tPi = 264,
tMPI_Rank = 265,
tMPI_Size = 266,
tExp = 267,
tLog = 268,
tLog10 = 269,
tSqrt = 270,
tSin = 271,
tAsin = 272,
tCos = 273,
tAcos = 274,
tTan = 275,
tRand = 276,
tAtan = 277,
tAtan2 = 278,
tSinh = 279,
tCosh = 280,
tTanh = 281,
tFabs = 282,
tFloor = 283,
tCeil = 284,
tFmod = 285,
tModulo = 286,
tHypot = 287,
tPrintf = 288,
tSprintf = 289,
tStrCat = 290,
tStrPrefix = 291,
tStrRelative = 292,
tBoundingBox = 293,
tDraw = 294,
tToday = 295,
tPoint = 296,
tCircle = 297,
tEllipse = 298,
tLine = 299,
tSurface = 300,
tSpline = 301,
tVolume = 302,
tCharacteristic = 303,
tLength = 304,
tParametric = 305,
tElliptic = 306,
tPlane = 307,
tRuled = 308,
tTransfinite = 309,
tComplex = 310,
tPhysical = 311,
tUsing = 312,
tBump = 313,
tProgression = 314,
tPlugin = 315,
tRotate = 316,
tTranslate = 317,
tSymmetry = 318,
tDilate = 319,
tExtrude = 320,
tDuplicata = 321,
tLoop = 322,
tRecombine = 323,
tDelete = 324,
tCoherence = 325,
tIntersect = 326,
tAttractor = 327,
tLayers = 328,
tAlias = 329,
tAliasWithOptions = 330,
tText2D = 331,
tText3D = 332,
tInterpolationScheme = 333,
tTime = 334,
tGrain = 335,
tCombine = 336,
tBSpline = 337,
tBezier = 338,
tNurbs = 339,
tOrder = 340,
tWith = 341,
tBounds = 342,
tKnots = 343,
tColor = 344,
tColorTable = 345,
tFor = 346,
tIn = 347,
tEndFor = 348,
tIf = 349,
tEndIf = 350,
tExit = 351,
tReturn = 352,
tCall = 353,
tFunction = 354,
tTrimmed = 355,
tShow = 356,
tHide = 357,
tGetValue = 358,
tGMSH_MAJOR_VERSION = 359,
tGMSH_MINOR_VERSION = 360,
tGMSH_PATCH_VERSION = 361,
tAFFECTDIVIDE = 362,
tAFFECTTIMES = 363,
tAFFECTMINUS = 364,
tAFFECTPLUS = 365,
tOR = 366,
tAND = 367,
tAPPROXEQUAL = 368,
tNOTEQUAL = 369,
tEQUAL = 370,
tGREATEROREQUAL = 371,
tLESSOREQUAL = 372,
tCROSSPRODUCT = 373,
UNARYPREC = 374,
tMINUSMINUS = 375,
tPLUSPLUS = 376
};
#endif
#define tDOUBLE 258
#define tSTRING 259
#define tBIGSTR 260
#define tEND 261
#define tAFFECT 262
#define tDOTS 263
#define tPi 264
#define tMPI_Rank 265
#define tMPI_Size 266
#define tExp 267
#define tLog 268
#define tLog10 269
#define tSqrt 270
#define tSin 271
#define tAsin 272
#define tCos 273
#define tAcos 274
#define tTan 275
#define tRand 276
#define tAtan 277
#define tAtan2 278
#define tSinh 279
#define tCosh 280
#define tTanh 281
Loading
Loading full blame...