mathematical 1.4.2 → 1.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (149) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +11 -21
  3. data/ext/mathematical/extconf.rb +21 -12
  4. data/ext/mathematical/lasem/Makefile +10 -10
  5. data/ext/mathematical/lasem/docs/Makefile +9 -9
  6. data/ext/mathematical/lasem/docs/reference/Makefile +9 -9
  7. data/ext/mathematical/lasem/docs/reference/lasem/Makefile +15 -9
  8. data/ext/mathematical/lasem/docs/reference/lasem/lasem-decl-list.txt +245 -0
  9. data/ext/mathematical/lasem/docs/reference/lasem/lasem-decl.txt +856 -0
  10. data/ext/mathematical/lasem/docs/reference/lasem/lasem-overrides.txt +0 -0
  11. data/ext/mathematical/lasem/itex2mml/Makefile +9 -9
  12. data/ext/mathematical/lasem/src/Makefile +34 -13
  13. data/ext/mathematical/lasem/src/lasemrender.c +13 -7
  14. data/ext/mathematical/lasem/src/lsmdomenumtypes.c +99 -0
  15. data/ext/mathematical/lasem/src/lsmdomenumtypes.h +26 -0
  16. data/ext/mathematical/lasem/src/lsmmathmlenums.c +24 -0
  17. data/ext/mathematical/lasem/src/lsmmathmlenums.h +12 -1
  18. data/ext/mathematical/lasem/src/lsmmathmlenumtypes.c +793 -0
  19. data/ext/mathematical/lasem/src/lsmmathmlenumtypes.h +96 -0
  20. data/ext/mathematical/lasem/src/lsmmathmlspaceelement.c +14 -0
  21. data/ext/mathematical/lasem/src/lsmmathmlspaceelement.h +1 -1
  22. data/ext/mathematical/lasem/src/lsmmathmltraits.c +24 -0
  23. data/ext/mathematical/lasem/src/lsmmathmltraits.h +1 -0
  24. data/ext/mathematical/lasem/src/lsmsvgattributes.h +50 -0
  25. data/ext/mathematical/lasem/src/lsmsvgdocument.c +18 -0
  26. data/ext/mathematical/lasem/src/lsmsvgenums.c +130 -0
  27. data/ext/mathematical/lasem/src/lsmsvgenums.h +59 -0
  28. data/ext/mathematical/lasem/src/lsmsvgenumtypes.c +1254 -0
  29. data/ext/mathematical/lasem/src/lsmsvgenumtypes.h +129 -0
  30. data/ext/mathematical/lasem/src/lsmsvgfiltercolormatrix.c +115 -0
  31. data/ext/mathematical/lasem/src/lsmsvgfiltercolormatrix.h +58 -0
  32. data/ext/mathematical/lasem/src/lsmsvgfilterconvolvematrix.c +206 -0
  33. data/ext/mathematical/lasem/src/lsmsvgfilterconvolvematrix.h +64 -0
  34. data/ext/mathematical/lasem/src/lsmsvgfilterdisplacementmap.c +124 -0
  35. data/ext/mathematical/lasem/src/lsmsvgfilterdisplacementmap.h +60 -0
  36. data/ext/mathematical/lasem/src/lsmsvgfilterimage.c +167 -0
  37. data/ext/mathematical/lasem/src/lsmsvgfilterimage.h +61 -0
  38. data/ext/mathematical/lasem/src/lsmsvgfiltermorphology.c +116 -0
  39. data/ext/mathematical/lasem/src/lsmsvgfiltermorphology.h +58 -0
  40. data/ext/mathematical/lasem/src/lsmsvgfilterspecularlighting.c +9 -2
  41. data/ext/mathematical/lasem/src/lsmsvgfiltersurface.c +1169 -87
  42. data/ext/mathematical/lasem/src/lsmsvgfiltersurface.h +28 -2
  43. data/ext/mathematical/lasem/src/lsmsvgfilterturbulence.c +142 -0
  44. data/ext/mathematical/lasem/src/lsmsvgfilterturbulence.h +61 -0
  45. data/ext/mathematical/lasem/src/lsmsvgtraits.c +249 -0
  46. data/ext/mathematical/lasem/src/lsmsvgtraits.h +18 -0
  47. data/ext/mathematical/lasem/src/lsmsvgtypes.h +6 -0
  48. data/ext/mathematical/lasem/src/lsmsvgview.c +267 -66
  49. data/ext/mathematical/lasem/src/lsmsvgview.h +23 -0
  50. data/ext/mathematical/lasem/src/lsmtraits.c +53 -1
  51. data/ext/mathematical/lasem/src/lsmtraits.h +2 -0
  52. data/ext/mathematical/lasem/tests/Makefile +26 -15
  53. data/ext/mathematical/lasem/tests/filter.c +152 -0
  54. data/ext/mathematical/lasem/tests/lsmtest.c +34 -30
  55. data/ext/mathematical/lasem/tests/suite.c +5 -2
  56. data/ext/mathematical/lib/libmtex2MML.a +0 -0
  57. data/ext/mathematical/mtex2MML/build/CMakeCache.txt +425 -0
  58. data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CMakeCCompiler.cmake +55 -0
  59. data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CMakeCXXCompiler.cmake +56 -0
  60. data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CMakeSystem.cmake +15 -0
  61. data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CompilerIdC/CMakeCCompilerId.c +393 -0
  62. data/ext/mathematical/mtex2MML/build/CMakeFiles/CMakeDirectoryInformation.cmake +16 -0
  63. data/ext/mathematical/mtex2MML/build/CMakeFiles/CMakeRuleHashes.txt +34 -0
  64. data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/DependInfo.cmake +27 -0
  65. data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/cmake_clean.cmake +8 -0
  66. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/DependInfo.cmake +27 -0
  67. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/cmake_clean.cmake +8 -0
  68. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/DependInfo.cmake +27 -0
  69. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/cmake_clean.cmake +8 -0
  70. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/DependInfo.cmake +27 -0
  71. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/cmake_clean.cmake +8 -0
  72. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/DependInfo.cmake +27 -0
  73. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/cmake_clean.cmake +8 -0
  74. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/DependInfo.cmake +27 -0
  75. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/cmake_clean.cmake +8 -0
  76. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/DependInfo.cmake +27 -0
  77. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/cmake_clean.cmake +8 -0
  78. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/DependInfo.cmake +27 -0
  79. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/cmake_clean.cmake +8 -0
  80. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/DependInfo.cmake +27 -0
  81. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/cmake_clean.cmake +8 -0
  82. data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/DependInfo.cmake +27 -0
  83. data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/cmake_clean.cmake +8 -0
  84. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/DependInfo.cmake +27 -0
  85. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/cmake_clean.cmake +8 -0
  86. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/DependInfo.cmake +27 -0
  87. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/cmake_clean.cmake +8 -0
  88. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/DependInfo.cmake +27 -0
  89. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/cmake_clean.cmake +8 -0
  90. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/DependInfo.cmake +27 -0
  91. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/cmake_clean.cmake +8 -0
  92. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/DependInfo.cmake +27 -0
  93. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/cmake_clean.cmake +8 -0
  94. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/DependInfo.cmake +27 -0
  95. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/cmake_clean.cmake +8 -0
  96. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/DependInfo.cmake +27 -0
  97. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/cmake_clean.cmake +8 -0
  98. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/DependInfo.cmake +27 -0
  99. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/cmake_clean.cmake +8 -0
  100. data/ext/mathematical/mtex2MML/build/CMakeFiles/Makefile.cmake +95 -0
  101. data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/DependInfo.cmake +27 -0
  102. data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/cmake_clean.cmake +8 -0
  103. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/DependInfo.cmake +27 -0
  104. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/cmake_clean.cmake +8 -0
  105. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/DependInfo.cmake +27 -0
  106. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/cmake_clean.cmake +8 -0
  107. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/DependInfo.cmake +27 -0
  108. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/cmake_clean.cmake +8 -0
  109. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/DependInfo.cmake +27 -0
  110. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/cmake_clean.cmake +8 -0
  111. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/DependInfo.cmake +27 -0
  112. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/cmake_clean.cmake +8 -0
  113. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/DependInfo.cmake +27 -0
  114. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/cmake_clean.cmake +8 -0
  115. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/DependInfo.cmake +27 -0
  116. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/cmake_clean.cmake +8 -0
  117. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/DependInfo.cmake +27 -0
  118. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/cmake_clean.cmake +8 -0
  119. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/DependInfo.cmake +27 -0
  120. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/cmake_clean.cmake +8 -0
  121. data/ext/mathematical/mtex2MML/build/CMakeFiles/TargetDirectories.txt +34 -0
  122. data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/DependInfo.cmake +27 -0
  123. data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/cmake_clean.cmake +8 -0
  124. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/DependInfo.cmake +44 -0
  125. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/cmake_clean.cmake +19 -0
  126. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/link.txt +1 -0
  127. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/DependInfo.cmake +43 -0
  128. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/cmake_clean.cmake +18 -0
  129. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/cmake_clean_target.cmake +3 -0
  130. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/link.txt +2 -0
  131. data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/DependInfo.cmake +27 -0
  132. data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/cmake_clean.cmake +8 -0
  133. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/DependInfo.cmake +44 -0
  134. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/cmake_clean.cmake +19 -0
  135. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/link.txt +1 -0
  136. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/DependInfo.cmake +59 -0
  137. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/cmake_clean.cmake +35 -0
  138. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/link.txt +1 -0
  139. data/ext/mathematical/mtex2MML/build/CTestTestfile.cmake +7 -0
  140. data/ext/mathematical/mtex2MML/build/Makefile +1332 -0
  141. data/ext/mathematical/mtex2MML/build/cmake_install.cmake +43 -0
  142. data/ext/mathematical/mtex2MML/build/lexer.c +8877 -0
  143. data/ext/mathematical/mtex2MML/build/libmtex2MML.a +0 -0
  144. data/ext/mathematical/mtex2MML/build/mtex2mml_export.h +35 -0
  145. data/ext/mathematical/mtex2MML/build/parser.c +10202 -0
  146. data/ext/mathematical/mtex2MML/build/parser.h +619 -0
  147. data/ext/mathematical/mtex2MML/src/mtex2MML.h +1 -1
  148. data/lib/mathematical/version.rb +1 -1
  149. metadata +115 -2
@@ -0,0 +1,619 @@
1
+ /* A Bison parser, made by GNU Bison 2.3. */
2
+
3
+ /* Skeleton interface for Bison's Yacc-like parsers in C
4
+
5
+ Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
6
+ Free Software Foundation, Inc.
7
+
8
+ This program is free software; you can redistribute it and/or modify
9
+ it under the terms of the GNU General Public License as published by
10
+ the Free Software Foundation; either version 2, or (at your option)
11
+ any later version.
12
+
13
+ This program is distributed in the hope that it will be useful,
14
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
+ GNU General Public License for more details.
17
+
18
+ You should have received a copy of the GNU General Public License
19
+ along with this program; if not, write to the Free Software
20
+ Foundation, Inc., 51 Franklin Street, Fifth Floor,
21
+ Boston, MA 02110-1301, USA. */
22
+
23
+ /* As a special exception, you may create a larger work that contains
24
+ part or all of the Bison parser skeleton and distribute that work
25
+ under terms of your choice, so long as that work isn't itself a
26
+ parser generator using the skeleton or a modified version thereof
27
+ as a parser skeleton. Alternatively, if you modify or redistribute
28
+ the parser skeleton itself, you may (at your option) remove this
29
+ special exception, which will cause the skeleton and the resulting
30
+ Bison output files to be licensed under the GNU General Public
31
+ License without this special exception.
32
+
33
+ This special exception was added by the Free Software Foundation in
34
+ version 2.2 of Bison. */
35
+
36
+ /* Tokens. */
37
+ #ifndef YYTOKENTYPE
38
+ # define YYTOKENTYPE
39
+ /* Put the tokens into the symbol table, so that GDB and other debuggers
40
+ know about them. */
41
+ enum yytokentype {
42
+ TEXABOVEWITHDELIMS = 258,
43
+ TEXABOVE = 259,
44
+ TEXATOPWITHDELIMS = 260,
45
+ TEXATOP = 261,
46
+ TEXOVERWITHDELIMS = 262,
47
+ TEXOVER = 263,
48
+ CHAR = 264,
49
+ STARTMATH = 265,
50
+ STARTDMATH = 266,
51
+ ENDMATH = 267,
52
+ MTEXT = 268,
53
+ MI = 269,
54
+ MIB = 270,
55
+ MN = 271,
56
+ MO = 272,
57
+ LIMITS = 273,
58
+ NOLIMITS = 274,
59
+ SUP = 275,
60
+ SUB = 276,
61
+ MROWOPEN = 277,
62
+ MROWCLOSE = 278,
63
+ MATHOPEN = 279,
64
+ MATHCLOSE = 280,
65
+ MATHORD = 281,
66
+ MATHPUNCT = 282,
67
+ VCENTER = 283,
68
+ LEFT = 284,
69
+ RIGHT = 285,
70
+ BIG = 286,
71
+ BBIG = 287,
72
+ BIGG = 288,
73
+ BBIGG = 289,
74
+ BIGL = 290,
75
+ BBIGL = 291,
76
+ BIGGL = 292,
77
+ BBIGGL = 293,
78
+ BIGM = 294,
79
+ BBIGM = 295,
80
+ BIGGM = 296,
81
+ BBIGGM = 297,
82
+ FRAC = 298,
83
+ TFRAC = 299,
84
+ DFRAC = 300,
85
+ CFRAC = 301,
86
+ GENFRAC = 302,
87
+ OPERATORNAME = 303,
88
+ MATHOP = 304,
89
+ MATHBIN = 305,
90
+ MATHREL = 306,
91
+ MATHINNER = 307,
92
+ MOP = 308,
93
+ MOL = 309,
94
+ MOLL = 310,
95
+ MOF = 311,
96
+ MOR = 312,
97
+ PERIODDELIM = 313,
98
+ COMMADELIM = 314,
99
+ OTHERDELIM = 315,
100
+ LEFTDELIM = 316,
101
+ RIGHTDELIM = 317,
102
+ MOS = 318,
103
+ MOB = 319,
104
+ SQRT = 320,
105
+ ROOT = 321,
106
+ OF = 322,
107
+ LEFTROOT = 323,
108
+ UPROOT = 324,
109
+ BINOM = 325,
110
+ TBINOM = 326,
111
+ BRACE = 327,
112
+ BRACK = 328,
113
+ CHOOSE = 329,
114
+ DBINOM = 330,
115
+ UNDER = 331,
116
+ BUILDREL = 332,
117
+ OVER = 333,
118
+ OVERBRACE = 334,
119
+ OVERBRACKET = 335,
120
+ UNDERLINE = 336,
121
+ UNDERBRACE = 337,
122
+ UNDERBRACKET = 338,
123
+ UNDEROVER = 339,
124
+ TENSOR = 340,
125
+ MULTI = 341,
126
+ ALIGNATVALUE = 342,
127
+ ARRAYALIGN = 343,
128
+ COLUMNALIGN = 344,
129
+ ARRAY = 345,
130
+ SPACECUBE = 346,
131
+ HSPACE = 347,
132
+ MOVELEFT = 348,
133
+ MOVERIGHT = 349,
134
+ RAISE = 350,
135
+ LOWER = 351,
136
+ PXSTRING = 352,
137
+ COLSEP = 353,
138
+ COLSEPSPACE = 354,
139
+ ROWSEP = 355,
140
+ ARRAYOPTS = 356,
141
+ COLLAYOUT = 357,
142
+ COLALIGN = 358,
143
+ ROWALIGN = 359,
144
+ ALIGN = 360,
145
+ EQROWS = 361,
146
+ EQCOLS = 362,
147
+ ROWLINES = 363,
148
+ COLLINES = 364,
149
+ FRAME = 365,
150
+ PADDING = 366,
151
+ ATTRLIST = 367,
152
+ ITALICS = 368,
153
+ SANS = 369,
154
+ TT = 370,
155
+ ENCLOSE = 371,
156
+ ENCLOSENOTATION = 372,
157
+ ENCLOSEATTR = 373,
158
+ ENCLOSETEXT = 374,
159
+ BOLD = 375,
160
+ BOXED = 376,
161
+ FBOX = 377,
162
+ HBOX = 378,
163
+ MBOX = 379,
164
+ BCANCELED = 380,
165
+ XCANCELED = 381,
166
+ CANCELEDTO = 382,
167
+ NOT = 383,
168
+ SLASHED = 384,
169
+ PMB = 385,
170
+ SCR = 386,
171
+ RM = 387,
172
+ BB = 388,
173
+ ST = 389,
174
+ END = 390,
175
+ BBLOWERCHAR = 391,
176
+ BBUPPERCHAR = 392,
177
+ BBDIGIT = 393,
178
+ CALCHAR = 394,
179
+ FRAKCHAR = 395,
180
+ CAL = 396,
181
+ FRAK = 397,
182
+ CLAP = 398,
183
+ LLAP = 399,
184
+ RLAP = 400,
185
+ ROWOPTS = 401,
186
+ TEXTSIZE = 402,
187
+ OLDSTYLE = 403,
188
+ SCSTY = 404,
189
+ SCSIZE = 405,
190
+ SCSCSIZE = 406,
191
+ TINY = 407,
192
+ TTINY = 408,
193
+ SMALL = 409,
194
+ NORMALSIZE = 410,
195
+ LARGE = 411,
196
+ LLARGE = 412,
197
+ LLLARGE = 413,
198
+ HUGE = 414,
199
+ HHUGE = 415,
200
+ DISPLAY = 416,
201
+ TEXTSTY = 417,
202
+ TEXTBOX = 418,
203
+ TEXTSTRING = 419,
204
+ COLORSTRING = 420,
205
+ STYLESTRING = 421,
206
+ VERBBOX = 422,
207
+ VERBSTRING = 423,
208
+ ACUTE = 424,
209
+ GRAVE = 425,
210
+ BREVE = 426,
211
+ MATHRING = 427,
212
+ XMLSTRING = 428,
213
+ CELLOPTS = 429,
214
+ ROWSPAN = 430,
215
+ COLSPAN = 431,
216
+ THINSPACE = 432,
217
+ ENSPACE = 433,
218
+ MEDSPACE = 434,
219
+ THICKSPACE = 435,
220
+ QUAD = 436,
221
+ QQUAD = 437,
222
+ NEGSPACE = 438,
223
+ NEGMEDSPACE = 439,
224
+ NEGTHICKSPACE = 440,
225
+ STRUT = 441,
226
+ MATHSTRUT = 442,
227
+ SMASH = 443,
228
+ PHANTOM = 444,
229
+ HPHANTOM = 445,
230
+ VPHANTOM = 446,
231
+ HREF = 447,
232
+ UNKNOWNCHAR = 448,
233
+ EMPTYMROW = 449,
234
+ STATLINE = 450,
235
+ TOOLTIP = 451,
236
+ TOGGLE = 452,
237
+ TOGGLESTART = 453,
238
+ TOGGLEEND = 454,
239
+ FGHIGHLIGHT = 455,
240
+ BGHIGHLIGHT = 456,
241
+ COLORBOX = 457,
242
+ SPACE = 458,
243
+ NUMBER = 459,
244
+ INTONE = 460,
245
+ INTTWO = 461,
246
+ INTTHREE = 462,
247
+ OVERLEFTARROW = 463,
248
+ OVERLEFTRIGHTARROW = 464,
249
+ OVERRIGHTARROW = 465,
250
+ UNDERLEFTARROW = 466,
251
+ UNDERLEFTRIGHTARROW = 467,
252
+ UNDERRIGHTARROW = 468,
253
+ BAR = 469,
254
+ WIDEBAR = 470,
255
+ SKEW = 471,
256
+ VEC = 472,
257
+ WIDEVEC = 473,
258
+ HAT = 474,
259
+ WIDEHAT = 475,
260
+ CHECK = 476,
261
+ WIDECHECK = 477,
262
+ TILDE = 478,
263
+ WIDETILDE = 479,
264
+ DOT = 480,
265
+ DDOT = 481,
266
+ DDDOT = 482,
267
+ DDDDOT = 483,
268
+ UNARYMINUS = 484,
269
+ UNARYPLUS = 485,
270
+ BEGINENV = 486,
271
+ ENDENV = 487,
272
+ EQUATION = 488,
273
+ EQUATION_STAR = 489,
274
+ EQALIGN = 490,
275
+ EQALIGNNO = 491,
276
+ MATRIX = 492,
277
+ PMATRIX = 493,
278
+ BMATRIX = 494,
279
+ BBMATRIX = 495,
280
+ VMATRIX = 496,
281
+ VVMATRIX = 497,
282
+ SUBARRAY = 498,
283
+ SVG = 499,
284
+ ENDSVG = 500,
285
+ SMALLMATRIX = 501,
286
+ CASES = 502,
287
+ ALIGNED = 503,
288
+ ALIGNENV = 504,
289
+ ALIGNENV_STAR = 505,
290
+ ALIGNAT = 506,
291
+ ALIGNAT_STAR = 507,
292
+ ALIGNEDAT = 508,
293
+ GATHERED = 509,
294
+ EQNARRAY = 510,
295
+ EQNARRAY_STAR = 511,
296
+ MULTLINE = 512,
297
+ MULTLINE_STAR = 513,
298
+ GATHER_STAR = 514,
299
+ GATHER = 515,
300
+ SUBSTACK = 516,
301
+ SIDESET = 517,
302
+ BMOD = 518,
303
+ PMOD = 519,
304
+ POD = 520,
305
+ RMCHAR = 521,
306
+ SCRCHAR = 522,
307
+ PMBCHAR = 523,
308
+ COLOR = 524,
309
+ BGCOLOR = 525,
310
+ BBOX = 526,
311
+ XARROW = 527,
312
+ OPTARGOPEN = 528,
313
+ OPTARGCLOSE = 529,
314
+ MTEXNUM = 530,
315
+ RAISEBOX = 531,
316
+ NEG = 532,
317
+ LATEXSYMBOL = 533,
318
+ TEXSYMBOL = 534,
319
+ VARINJLIM = 535,
320
+ VARLIMINF = 536,
321
+ VARLIMSUP = 537,
322
+ VARPROJLIM = 538
323
+ };
324
+ #endif
325
+ /* Tokens. */
326
+ #define TEXABOVEWITHDELIMS 258
327
+ #define TEXABOVE 259
328
+ #define TEXATOPWITHDELIMS 260
329
+ #define TEXATOP 261
330
+ #define TEXOVERWITHDELIMS 262
331
+ #define TEXOVER 263
332
+ #define CHAR 264
333
+ #define STARTMATH 265
334
+ #define STARTDMATH 266
335
+ #define ENDMATH 267
336
+ #define MTEXT 268
337
+ #define MI 269
338
+ #define MIB 270
339
+ #define MN 271
340
+ #define MO 272
341
+ #define LIMITS 273
342
+ #define NOLIMITS 274
343
+ #define SUP 275
344
+ #define SUB 276
345
+ #define MROWOPEN 277
346
+ #define MROWCLOSE 278
347
+ #define MATHOPEN 279
348
+ #define MATHCLOSE 280
349
+ #define MATHORD 281
350
+ #define MATHPUNCT 282
351
+ #define VCENTER 283
352
+ #define LEFT 284
353
+ #define RIGHT 285
354
+ #define BIG 286
355
+ #define BBIG 287
356
+ #define BIGG 288
357
+ #define BBIGG 289
358
+ #define BIGL 290
359
+ #define BBIGL 291
360
+ #define BIGGL 292
361
+ #define BBIGGL 293
362
+ #define BIGM 294
363
+ #define BBIGM 295
364
+ #define BIGGM 296
365
+ #define BBIGGM 297
366
+ #define FRAC 298
367
+ #define TFRAC 299
368
+ #define DFRAC 300
369
+ #define CFRAC 301
370
+ #define GENFRAC 302
371
+ #define OPERATORNAME 303
372
+ #define MATHOP 304
373
+ #define MATHBIN 305
374
+ #define MATHREL 306
375
+ #define MATHINNER 307
376
+ #define MOP 308
377
+ #define MOL 309
378
+ #define MOLL 310
379
+ #define MOF 311
380
+ #define MOR 312
381
+ #define PERIODDELIM 313
382
+ #define COMMADELIM 314
383
+ #define OTHERDELIM 315
384
+ #define LEFTDELIM 316
385
+ #define RIGHTDELIM 317
386
+ #define MOS 318
387
+ #define MOB 319
388
+ #define SQRT 320
389
+ #define ROOT 321
390
+ #define OF 322
391
+ #define LEFTROOT 323
392
+ #define UPROOT 324
393
+ #define BINOM 325
394
+ #define TBINOM 326
395
+ #define BRACE 327
396
+ #define BRACK 328
397
+ #define CHOOSE 329
398
+ #define DBINOM 330
399
+ #define UNDER 331
400
+ #define BUILDREL 332
401
+ #define OVER 333
402
+ #define OVERBRACE 334
403
+ #define OVERBRACKET 335
404
+ #define UNDERLINE 336
405
+ #define UNDERBRACE 337
406
+ #define UNDERBRACKET 338
407
+ #define UNDEROVER 339
408
+ #define TENSOR 340
409
+ #define MULTI 341
410
+ #define ALIGNATVALUE 342
411
+ #define ARRAYALIGN 343
412
+ #define COLUMNALIGN 344
413
+ #define ARRAY 345
414
+ #define SPACECUBE 346
415
+ #define HSPACE 347
416
+ #define MOVELEFT 348
417
+ #define MOVERIGHT 349
418
+ #define RAISE 350
419
+ #define LOWER 351
420
+ #define PXSTRING 352
421
+ #define COLSEP 353
422
+ #define COLSEPSPACE 354
423
+ #define ROWSEP 355
424
+ #define ARRAYOPTS 356
425
+ #define COLLAYOUT 357
426
+ #define COLALIGN 358
427
+ #define ROWALIGN 359
428
+ #define ALIGN 360
429
+ #define EQROWS 361
430
+ #define EQCOLS 362
431
+ #define ROWLINES 363
432
+ #define COLLINES 364
433
+ #define FRAME 365
434
+ #define PADDING 366
435
+ #define ATTRLIST 367
436
+ #define ITALICS 368
437
+ #define SANS 369
438
+ #define TT 370
439
+ #define ENCLOSE 371
440
+ #define ENCLOSENOTATION 372
441
+ #define ENCLOSEATTR 373
442
+ #define ENCLOSETEXT 374
443
+ #define BOLD 375
444
+ #define BOXED 376
445
+ #define FBOX 377
446
+ #define HBOX 378
447
+ #define MBOX 379
448
+ #define BCANCELED 380
449
+ #define XCANCELED 381
450
+ #define CANCELEDTO 382
451
+ #define NOT 383
452
+ #define SLASHED 384
453
+ #define PMB 385
454
+ #define SCR 386
455
+ #define RM 387
456
+ #define BB 388
457
+ #define ST 389
458
+ #define END 390
459
+ #define BBLOWERCHAR 391
460
+ #define BBUPPERCHAR 392
461
+ #define BBDIGIT 393
462
+ #define CALCHAR 394
463
+ #define FRAKCHAR 395
464
+ #define CAL 396
465
+ #define FRAK 397
466
+ #define CLAP 398
467
+ #define LLAP 399
468
+ #define RLAP 400
469
+ #define ROWOPTS 401
470
+ #define TEXTSIZE 402
471
+ #define OLDSTYLE 403
472
+ #define SCSTY 404
473
+ #define SCSIZE 405
474
+ #define SCSCSIZE 406
475
+ #define TINY 407
476
+ #define TTINY 408
477
+ #define SMALL 409
478
+ #define NORMALSIZE 410
479
+ #define LARGE 411
480
+ #define LLARGE 412
481
+ #define LLLARGE 413
482
+ #define HUGE 414
483
+ #define HHUGE 415
484
+ #define DISPLAY 416
485
+ #define TEXTSTY 417
486
+ #define TEXTBOX 418
487
+ #define TEXTSTRING 419
488
+ #define COLORSTRING 420
489
+ #define STYLESTRING 421
490
+ #define VERBBOX 422
491
+ #define VERBSTRING 423
492
+ #define ACUTE 424
493
+ #define GRAVE 425
494
+ #define BREVE 426
495
+ #define MATHRING 427
496
+ #define XMLSTRING 428
497
+ #define CELLOPTS 429
498
+ #define ROWSPAN 430
499
+ #define COLSPAN 431
500
+ #define THINSPACE 432
501
+ #define ENSPACE 433
502
+ #define MEDSPACE 434
503
+ #define THICKSPACE 435
504
+ #define QUAD 436
505
+ #define QQUAD 437
506
+ #define NEGSPACE 438
507
+ #define NEGMEDSPACE 439
508
+ #define NEGTHICKSPACE 440
509
+ #define STRUT 441
510
+ #define MATHSTRUT 442
511
+ #define SMASH 443
512
+ #define PHANTOM 444
513
+ #define HPHANTOM 445
514
+ #define VPHANTOM 446
515
+ #define HREF 447
516
+ #define UNKNOWNCHAR 448
517
+ #define EMPTYMROW 449
518
+ #define STATLINE 450
519
+ #define TOOLTIP 451
520
+ #define TOGGLE 452
521
+ #define TOGGLESTART 453
522
+ #define TOGGLEEND 454
523
+ #define FGHIGHLIGHT 455
524
+ #define BGHIGHLIGHT 456
525
+ #define COLORBOX 457
526
+ #define SPACE 458
527
+ #define NUMBER 459
528
+ #define INTONE 460
529
+ #define INTTWO 461
530
+ #define INTTHREE 462
531
+ #define OVERLEFTARROW 463
532
+ #define OVERLEFTRIGHTARROW 464
533
+ #define OVERRIGHTARROW 465
534
+ #define UNDERLEFTARROW 466
535
+ #define UNDERLEFTRIGHTARROW 467
536
+ #define UNDERRIGHTARROW 468
537
+ #define BAR 469
538
+ #define WIDEBAR 470
539
+ #define SKEW 471
540
+ #define VEC 472
541
+ #define WIDEVEC 473
542
+ #define HAT 474
543
+ #define WIDEHAT 475
544
+ #define CHECK 476
545
+ #define WIDECHECK 477
546
+ #define TILDE 478
547
+ #define WIDETILDE 479
548
+ #define DOT 480
549
+ #define DDOT 481
550
+ #define DDDOT 482
551
+ #define DDDDOT 483
552
+ #define UNARYMINUS 484
553
+ #define UNARYPLUS 485
554
+ #define BEGINENV 486
555
+ #define ENDENV 487
556
+ #define EQUATION 488
557
+ #define EQUATION_STAR 489
558
+ #define EQALIGN 490
559
+ #define EQALIGNNO 491
560
+ #define MATRIX 492
561
+ #define PMATRIX 493
562
+ #define BMATRIX 494
563
+ #define BBMATRIX 495
564
+ #define VMATRIX 496
565
+ #define VVMATRIX 497
566
+ #define SUBARRAY 498
567
+ #define SVG 499
568
+ #define ENDSVG 500
569
+ #define SMALLMATRIX 501
570
+ #define CASES 502
571
+ #define ALIGNED 503
572
+ #define ALIGNENV 504
573
+ #define ALIGNENV_STAR 505
574
+ #define ALIGNAT 506
575
+ #define ALIGNAT_STAR 507
576
+ #define ALIGNEDAT 508
577
+ #define GATHERED 509
578
+ #define EQNARRAY 510
579
+ #define EQNARRAY_STAR 511
580
+ #define MULTLINE 512
581
+ #define MULTLINE_STAR 513
582
+ #define GATHER_STAR 514
583
+ #define GATHER 515
584
+ #define SUBSTACK 516
585
+ #define SIDESET 517
586
+ #define BMOD 518
587
+ #define PMOD 519
588
+ #define POD 520
589
+ #define RMCHAR 521
590
+ #define SCRCHAR 522
591
+ #define PMBCHAR 523
592
+ #define COLOR 524
593
+ #define BGCOLOR 525
594
+ #define BBOX 526
595
+ #define XARROW 527
596
+ #define OPTARGOPEN 528
597
+ #define OPTARGCLOSE 529
598
+ #define MTEXNUM 530
599
+ #define RAISEBOX 531
600
+ #define NEG 532
601
+ #define LATEXSYMBOL 533
602
+ #define TEXSYMBOL 534
603
+ #define VARINJLIM 535
604
+ #define VARLIMINF 536
605
+ #define VARLIMSUP 537
606
+ #define VARPROJLIM 538
607
+
608
+
609
+
610
+
611
+ #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
612
+ typedef int YYSTYPE;
613
+ # define yystype YYSTYPE /* obsolescent; will be withdrawn */
614
+ # define YYSTYPE_IS_DECLARED 1
615
+ # define YYSTYPE_IS_TRIVIAL 1
616
+ #endif
617
+
618
+ extern YYSTYPE mtex2MML_yylval;
619
+
@@ -1,7 +1,7 @@
1
1
  #ifndef MTEX2MML_H
2
2
  #define MTEX2MML_H
3
3
 
4
- #define MTEX2MML_VERSION "1.2.2"
4
+ #define MTEX2MML_VERSION "1.2.3"
5
5
 
6
6
  #ifdef __cplusplus
7
7
  extern "C" {
@@ -1,3 +1,3 @@
1
1
  class Mathematical
2
- VERSION = '1.4.2'
2
+ VERSION = '1.5.0'
3
3
  end