Newer
Older
/* Skeleton interface for Bison's Yacc-like parsers in C

Christophe Geuzaine
committed
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
2009, 2010 Free Software Foundation, Inc.

Christophe Geuzaine
committed
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

Christophe Geuzaine
committed
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

Christophe Geuzaine
committed

Christophe Geuzaine
committed
along with this program. If not, see <http://www.gnu.org/licenses/>. */
/* As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work
under terms of your choice, so long as that work isn't itself a
parser generator using the skeleton or a modified version thereof
as a parser skeleton. Alternatively, if you modify or redistribute
the parser skeleton itself, you may (at your option) remove this
special exception, which will cause the skeleton and the resulting
Bison output files to be licensed under the GNU General Public
License without this special exception.

Christophe Geuzaine
committed
This special exception was added by the Free Software Foundation in
version 2.2 of Bison. */

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

Christophe Geuzaine
committed
#line 92 "Gmsh.y"

Christophe Geuzaine
committed

Christophe Geuzaine
committed

Christophe Geuzaine
committed
} YYSTYPE;
# define YYSTYPE_IS_TRIVIAL 1
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
# define YYSTYPE_IS_DECLARED 1
#endif