mathematical 1.6.14 → 1.6.18

Sign up to get free protection for your applications and to get access to all the features.
Files changed (318) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -1
  3. data/Rakefile +31 -21
  4. data/ext/mathematical/extconf.rb +71 -69
  5. data/ext/mathematical/lasem/COPYING +118 -99
  6. data/ext/mathematical/lasem/{NEWS → NEWS.md} +10 -0
  7. data/ext/mathematical/lasem/README.md +65 -0
  8. data/ext/mathematical/lasem/docs/lasem-render-0.6.1 +2 -2
  9. data/ext/mathematical/lasem/docs/meson.build +3 -0
  10. data/ext/mathematical/lasem/docs/reference/lasem/building.md +32 -0
  11. data/ext/mathematical/lasem/docs/reference/lasem/lasem.toml.in +47 -0
  12. data/ext/mathematical/lasem/docs/reference/lasem/meson.build +44 -0
  13. data/ext/mathematical/lasem/docs/reference/lasem/overview.md +24 -0
  14. data/ext/mathematical/lasem/docs/reference/lasem/urlmap.js +5 -0
  15. data/ext/mathematical/lasem/itex2mml/README.itex2MML +5 -2
  16. data/ext/mathematical/lasem/itex2mml/itex2MML.h +10 -10
  17. data/ext/mathematical/lasem/itex2mml/itex2MML.l +126 -27
  18. data/ext/mathematical/lasem/itex2mml/itex2MML.y +262 -99
  19. data/ext/mathematical/lasem/itex2mml/meson.build +17 -0
  20. data/ext/mathematical/lasem/lasem.doap +7 -7
  21. data/ext/mathematical/lasem/meson.build +46 -0
  22. data/ext/mathematical/lasem/meson_options.txt +5 -0
  23. data/ext/mathematical/lasem/org.lasem.Viewer.json +41 -0
  24. data/ext/mathematical/lasem/po/LINGUAS +0 -2
  25. data/ext/mathematical/lasem/po/eu.po +30 -66
  26. data/ext/mathematical/lasem/po/meson.build +4 -0
  27. data/ext/mathematical/lasem/src/lasemrender.c +1 -6
  28. data/ext/mathematical/lasem/src/lsm.c +2 -0
  29. data/ext/mathematical/lasem/src/lsmattributes.c +2 -5
  30. data/ext/mathematical/lasem/src/lsmmathmlglyphtableams.c +71 -7
  31. data/ext/mathematical/lasem/src/lsmmathmlitexelement.c +7 -5
  32. data/ext/mathematical/lasem/src/lsmmathmloperatordictionary.c +11 -1
  33. data/ext/mathematical/lasem/src/lsmmathmloperatordictionary.h +2 -1
  34. data/ext/mathematical/lasem/src/lsmmathmloperatorelement.c +6 -1
  35. data/ext/mathematical/lasem/src/lsmmathmlview.c +21 -3
  36. data/ext/mathematical/lasem/src/lsmmathmlview.h +2 -2
  37. data/ext/mathematical/lasem/src/lsmmisc.c +15 -0
  38. data/ext/mathematical/lasem/src/lsmmisc.h +32 -0
  39. data/ext/mathematical/lasem/src/lsmproperties.c +2 -5
  40. data/ext/mathematical/lasem/src/lsmsvgfiltersurface.c +6 -3
  41. data/ext/mathematical/lasem/src/lsmsvgtraits.c +10 -1
  42. data/ext/mathematical/lasem/src/meson.build +321 -0
  43. data/ext/mathematical/lasem/subprojects/gi-docgen.wrap +6 -0
  44. data/ext/mathematical/lasem/tests/data/mathml/tex/misc/array.tex +3 -0
  45. data/ext/mathematical/lasem/tests/dom.c +0 -6
  46. data/ext/mathematical/lasem/tests/filter.c +8 -7
  47. data/ext/mathematical/lasem/tests/lasem.supp +185 -0
  48. data/ext/mathematical/lasem/tests/lsmtest.c +2 -9
  49. data/ext/mathematical/lasem/tests/meson.build +39 -0
  50. data/ext/mathematical/lasem/tests/str.c +0 -4
  51. data/ext/mathematical/lasem/tests/suite.c +0 -4
  52. data/ext/mathematical/lasem/viewer/meson.build +17 -0
  53. data/ext/mathematical/lasem/viewer/viewer.c +248 -0
  54. data/ext/mathematical/mtex2MML/script/tag +15 -14
  55. data/ext/mathematical/mtex2MML/src/lexer.l +4 -4
  56. data/ext/mathematical/mtex2MML/src/mtex2MML.h +7 -7
  57. data/ext/mathematical/mtex2MML/src/parser.y +5 -5
  58. data/ext/mathematical/mtex2MML/tests/clar.c +2 -2
  59. data/ext/mathematical/mtex2MML/tests/deps/trim/package.json +2 -2
  60. data/lib/mathematical/configuration.rb +8 -4
  61. data/lib/mathematical/corrections.rb +3 -1
  62. data/lib/mathematical/validator.rb +11 -8
  63. data/lib/mathematical/version.rb +3 -1
  64. data/lib/mathematical.rb +21 -19
  65. data/mathematical.gemspec +21 -22
  66. metadata +36 -336
  67. data/ext/mathematical/lasem/AUTHORS +0 -1
  68. data/ext/mathematical/lasem/ChangeLog +0 -0
  69. data/ext/mathematical/lasem/MAINTAINERS +0 -3
  70. data/ext/mathematical/lasem/Makefile.am +0 -34
  71. data/ext/mathematical/lasem/Makefile.decl +0 -57
  72. data/ext/mathematical/lasem/README +0 -28
  73. data/ext/mathematical/lasem/RELEASING +0 -85
  74. data/ext/mathematical/lasem/autogen.sh +0 -180
  75. data/ext/mathematical/lasem/configure.ac +0 -139
  76. data/ext/mathematical/lasem/docs/Makefile.am +0 -14
  77. data/ext/mathematical/lasem/docs/reference/Makefile.am +0 -3
  78. data/ext/mathematical/lasem/docs/reference/lasem/Makefile.am +0 -205
  79. data/ext/mathematical/lasem/docs/reference/lasem/lasem-docs.xml +0 -75
  80. data/ext/mathematical/lasem/docs/reference/lasem/lasem-overview.xml +0 -64
  81. data/ext/mathematical/lasem/docs/reference/lasem/lasem-sections.txt +0 -213
  82. data/ext/mathematical/lasem/docs/reference/lasem/lasem.types +0 -110
  83. data/ext/mathematical/lasem/itex2mml/Makefile.am +0 -37
  84. data/ext/mathematical/lasem/lasem.pc.in +0 -11
  85. data/ext/mathematical/lasem/m4/introspection.m4 +0 -96
  86. data/ext/mathematical/lasem/po/ChangeLog +0 -0
  87. data/ext/mathematical/lasem/po/ro.po +0 -64
  88. data/ext/mathematical/lasem/src/Makefile.am +0 -349
  89. data/ext/mathematical/lasem/src/lsmdomenumtypes.c.template +0 -39
  90. data/ext/mathematical/lasem/src/lsmdomenumtypes.h.template +0 -26
  91. data/ext/mathematical/lasem/src/lsmmathmlenumtypes.c.template +0 -39
  92. data/ext/mathematical/lasem/src/lsmmathmlenumtypes.h.template +0 -26
  93. data/ext/mathematical/lasem/src/lsmsvgenumtypes.c.template +0 -39
  94. data/ext/mathematical/lasem/src/lsmsvgenumtypes.h.template +0 -26
  95. data/ext/mathematical/lasem/tests/Makefile.am +0 -34
  96. data/ext/mathematical/lib/liblasem.dylib +0 -0
  97. data/ext/mathematical/lib/libmtex2MML.a +0 -0
  98. data/ext/mathematical/mtex2MML/build/CMakeCache.txt +0 -512
  99. data/ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CMakeCCompiler.cmake +0 -76
  100. data/ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CMakeCXXCompiler.cmake +0 -88
  101. data/ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CMakeDetermineCompilerABI_C.bin +0 -0
  102. data/ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CMakeDetermineCompilerABI_CXX.bin +0 -0
  103. data/ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CMakeSystem.cmake +0 -15
  104. data/ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CompilerIdC/CMakeCCompilerId.c +0 -671
  105. data/ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CompilerIdCXX/CMakeCXXCompilerId.cpp +0 -660
  106. data/ext/mathematical/mtex2MML/build/CMakeFiles/CMakeDirectoryInformation.cmake +0 -16
  107. data/ext/mathematical/mtex2MML/build/CMakeFiles/CMakeError.log +0 -22
  108. data/ext/mathematical/mtex2MML/build/CMakeFiles/CMakeOutput.log +0 -351
  109. data/ext/mathematical/mtex2MML/build/CMakeFiles/CMakeRuleHashes.txt +0 -34
  110. data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/DependInfo.cmake +0 -11
  111. data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/build.make +0 -76
  112. data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/cmake_clean.cmake +0 -8
  113. data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/progress.make +0 -1
  114. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/DependInfo.cmake +0 -11
  115. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/build.make +0 -76
  116. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/cmake_clean.cmake +0 -8
  117. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/progress.make +0 -1
  118. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/DependInfo.cmake +0 -11
  119. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/build.make +0 -76
  120. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/cmake_clean.cmake +0 -8
  121. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/progress.make +0 -1
  122. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/DependInfo.cmake +0 -11
  123. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/build.make +0 -76
  124. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/cmake_clean.cmake +0 -8
  125. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/progress.make +0 -1
  126. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/DependInfo.cmake +0 -11
  127. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/build.make +0 -76
  128. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/cmake_clean.cmake +0 -8
  129. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/progress.make +0 -1
  130. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/DependInfo.cmake +0 -11
  131. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/build.make +0 -76
  132. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/cmake_clean.cmake +0 -8
  133. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/progress.make +0 -1
  134. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/DependInfo.cmake +0 -11
  135. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/build.make +0 -76
  136. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/cmake_clean.cmake +0 -8
  137. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/progress.make +0 -1
  138. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/DependInfo.cmake +0 -11
  139. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/build.make +0 -76
  140. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/cmake_clean.cmake +0 -8
  141. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/progress.make +0 -1
  142. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/DependInfo.cmake +0 -11
  143. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/build.make +0 -76
  144. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/cmake_clean.cmake +0 -8
  145. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/progress.make +0 -1
  146. data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/DependInfo.cmake +0 -11
  147. data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/build.make +0 -76
  148. data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/cmake_clean.cmake +0 -8
  149. data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/progress.make +0 -1
  150. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/DependInfo.cmake +0 -11
  151. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/build.make +0 -76
  152. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/cmake_clean.cmake +0 -8
  153. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/progress.make +0 -1
  154. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/DependInfo.cmake +0 -11
  155. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/build.make +0 -76
  156. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/cmake_clean.cmake +0 -8
  157. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/progress.make +0 -1
  158. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/DependInfo.cmake +0 -11
  159. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/build.make +0 -76
  160. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/cmake_clean.cmake +0 -8
  161. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/progress.make +0 -1
  162. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/DependInfo.cmake +0 -11
  163. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/build.make +0 -76
  164. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/cmake_clean.cmake +0 -8
  165. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/progress.make +0 -1
  166. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/DependInfo.cmake +0 -11
  167. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/build.make +0 -76
  168. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/cmake_clean.cmake +0 -8
  169. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/progress.make +0 -1
  170. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/DependInfo.cmake +0 -11
  171. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/build.make +0 -76
  172. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/cmake_clean.cmake +0 -8
  173. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/progress.make +0 -1
  174. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/DependInfo.cmake +0 -11
  175. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/build.make +0 -76
  176. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/cmake_clean.cmake +0 -8
  177. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/progress.make +0 -1
  178. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/DependInfo.cmake +0 -11
  179. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/build.make +0 -76
  180. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/cmake_clean.cmake +0 -8
  181. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/progress.make +0 -1
  182. data/ext/mathematical/mtex2MML/build/CMakeFiles/Makefile.cmake +0 -177
  183. data/ext/mathematical/mtex2MML/build/CMakeFiles/Makefile2 +0 -1033
  184. data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/DependInfo.cmake +0 -11
  185. data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/build.make +0 -76
  186. data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/cmake_clean.cmake +0 -8
  187. data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/progress.make +0 -1
  188. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/DependInfo.cmake +0 -11
  189. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/build.make +0 -76
  190. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/cmake_clean.cmake +0 -8
  191. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/progress.make +0 -1
  192. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/DependInfo.cmake +0 -11
  193. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/build.make +0 -76
  194. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/cmake_clean.cmake +0 -8
  195. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/progress.make +0 -1
  196. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/DependInfo.cmake +0 -11
  197. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/build.make +0 -76
  198. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/cmake_clean.cmake +0 -8
  199. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/progress.make +0 -1
  200. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/DependInfo.cmake +0 -11
  201. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/build.make +0 -76
  202. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/cmake_clean.cmake +0 -8
  203. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/progress.make +0 -1
  204. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/DependInfo.cmake +0 -11
  205. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/build.make +0 -76
  206. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/cmake_clean.cmake +0 -8
  207. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/progress.make +0 -1
  208. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/DependInfo.cmake +0 -11
  209. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/build.make +0 -76
  210. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/cmake_clean.cmake +0 -8
  211. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/progress.make +0 -1
  212. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/DependInfo.cmake +0 -11
  213. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/build.make +0 -76
  214. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/cmake_clean.cmake +0 -8
  215. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/progress.make +0 -1
  216. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/DependInfo.cmake +0 -11
  217. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/build.make +0 -76
  218. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/cmake_clean.cmake +0 -8
  219. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/progress.make +0 -1
  220. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/DependInfo.cmake +0 -11
  221. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/build.make +0 -76
  222. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/cmake_clean.cmake +0 -8
  223. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/progress.make +0 -1
  224. data/ext/mathematical/mtex2MML/build/CMakeFiles/TargetDirectories.txt +0 -41
  225. data/ext/mathematical/mtex2MML/build/CMakeFiles/cmake.check_cache +0 -1
  226. data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/DependInfo.cmake +0 -11
  227. data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/build.make +0 -76
  228. data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/cmake_clean.cmake +0 -8
  229. data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/progress.make +0 -1
  230. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/DependInfo.cmake +0 -44
  231. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/build.make +0 -206
  232. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/cmake_clean.cmake +0 -20
  233. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/depend.make +0 -2
  234. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/flags.make +0 -10
  235. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/link.txt +0 -1
  236. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/progress.make +0 -11
  237. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/C.includecache +0 -244
  238. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/DependInfo.cmake +0 -42
  239. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/build.make +0 -203
  240. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/cmake_clean.cmake +0 -19
  241. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/cmake_clean_target.cmake +0 -3
  242. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/depend.internal +0 -49
  243. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/depend.make +0 -49
  244. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/flags.make +0 -10
  245. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/link.txt +0 -2
  246. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/progress.make +0 -11
  247. data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/DependInfo.cmake +0 -11
  248. data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/build.make +0 -76
  249. data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/cmake_clean.cmake +0 -8
  250. data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/progress.make +0 -1
  251. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/DependInfo.cmake +0 -43
  252. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/build.make +0 -217
  253. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/cmake_clean.cmake +0 -20
  254. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/depend.make +0 -2
  255. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/flags.make +0 -10
  256. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/link.txt +0 -1
  257. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/progress.make +0 -12
  258. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/DependInfo.cmake +0 -59
  259. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/build.make +0 -473
  260. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/cmake_clean.cmake +0 -37
  261. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/depend.make +0 -2
  262. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/flags.make +0 -10
  263. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/link.txt +0 -1
  264. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/progress.make +0 -29
  265. data/ext/mathematical/mtex2MML/build/CMakeFiles/progress.marks +0 -1
  266. data/ext/mathematical/mtex2MML/build/CTestTestfile.cmake +0 -8
  267. data/ext/mathematical/mtex2MML/build/DartConfiguration.tcl +0 -105
  268. data/ext/mathematical/mtex2MML/build/Makefile +0 -1485
  269. data/ext/mathematical/mtex2MML/build/cmake_install.cmake +0 -102
  270. data/ext/mathematical/mtex2MML/build/lexer.c +0 -8903
  271. data/ext/mathematical/mtex2MML/build/libmtex2MML.a +0 -0
  272. data/ext/mathematical/mtex2MML/build/libmtex2MML.pc +0 -10
  273. data/ext/mathematical/mtex2MML/build/mtex2mml_export.h +0 -42
  274. data/ext/mathematical/mtex2MML/build/parser.c +0 -10334
  275. data/ext/mathematical/mtex2MML/build/parser.h +0 -625
  276. data/ext/mathematical/mtex2MML/build/parser.output +0 -120719
  277. data/test/mathematical/basic_test.rb +0 -89
  278. data/test/mathematical/corrections_test.rb +0 -16
  279. data/test/mathematical/delimiters_test.rb +0 -69
  280. data/test/mathematical/fixtures/after/backslashes.html +0 -5
  281. data/test/mathematical/fixtures/after/brackets_display.html +0 -1
  282. data/test/mathematical/fixtures/after/compliance_accents.html +0 -17
  283. data/test/mathematical/fixtures/after/compliance_arrows.html +0 -71
  284. data/test/mathematical/fixtures/after/compliance_colors.html +0 -4
  285. data/test/mathematical/fixtures/after/compliance_greek_letters.html +0 -42
  286. data/test/mathematical/fixtures/after/compliance_large_math.html +0 -19
  287. data/test/mathematical/fixtures/after/compliance_log_symbols.html +0 -34
  288. data/test/mathematical/fixtures/after/compliance_operators.html +0 -262
  289. data/test/mathematical/fixtures/after/dollar_sign_inline.html +0 -1
  290. data/test/mathematical/fixtures/after/equation_display.html +0 -1
  291. data/test/mathematical/fixtures/after/multiple_dollar_inline.html +0 -1
  292. data/test/mathematical/fixtures/after/parens_inline.html +0 -1
  293. data/test/mathematical/fixtures/before/backslashes.text +0 -17
  294. data/test/mathematical/fixtures/before/brackets_display.text +0 -1
  295. data/test/mathematical/fixtures/before/compliance_accents.text +0 -17
  296. data/test/mathematical/fixtures/before/compliance_arrows.text +0 -71
  297. data/test/mathematical/fixtures/before/compliance_colors.text +0 -4
  298. data/test/mathematical/fixtures/before/compliance_greek_letters.text +0 -42
  299. data/test/mathematical/fixtures/before/compliance_large_math.text +0 -19
  300. data/test/mathematical/fixtures/before/compliance_log_symbols.text +0 -34
  301. data/test/mathematical/fixtures/before/compliance_operators.text +0 -262
  302. data/test/mathematical/fixtures/before/dollar_sign_inline.text +0 -1
  303. data/test/mathematical/fixtures/before/equation_display.text +0 -1
  304. data/test/mathematical/fixtures/before/multiple_dollar_inline.text +0 -1
  305. data/test/mathematical/fixtures/before/parens_inline.text +0 -1
  306. data/test/mathematical/fixtures/performance/big_file.text +0 -1755
  307. data/test/mathematical/fixtures/png/numeric_test_1.png +0 -0
  308. data/test/mathematical/fixtures/png/numeric_test_2.png +0 -0
  309. data/test/mathematical/fixtures/png/numeric_test_3.png +0 -0
  310. data/test/mathematical/fixtures/png/pmatrix.png +0 -0
  311. data/test/mathematical/fixtures_test.rb +0 -51
  312. data/test/mathematical/maliciousness_test.rb +0 -152
  313. data/test/mathematical/mathjax_test.rb +0 -26
  314. data/test/mathematical/mathml_test.rb +0 -21
  315. data/test/mathematical/multiples_test.rb +0 -71
  316. data/test/mathematical/performance_test.rb +0 -15
  317. data/test/mathematical/png_test.rb +0 -30
  318. data/test/test_helper.rb +0 -72
@@ -1,625 +0,0 @@
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
- LIMITS = 258,
43
- TEXABOVEWITHDELIMS = 259,
44
- TEXABOVE = 260,
45
- TEXATOPWITHDELIMS = 261,
46
- TEXATOP = 262,
47
- TEXOVERWITHDELIMS = 263,
48
- TEXOVER = 264,
49
- CHAR = 265,
50
- STARTMATH = 266,
51
- STARTDMATH = 267,
52
- ENDMATH = 268,
53
- MTEXT = 269,
54
- MI = 270,
55
- MIB = 271,
56
- MN = 272,
57
- MO = 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
- NEWLINE = 356,
141
- ARRAYOPTS = 357,
142
- COLLAYOUT = 358,
143
- COLALIGN = 359,
144
- ROWALIGN = 360,
145
- ALIGN = 361,
146
- EQROWS = 362,
147
- EQCOLS = 363,
148
- ROWLINES = 364,
149
- COLLINES = 365,
150
- FRAME = 366,
151
- PADDING = 367,
152
- ATTRLIST = 368,
153
- ITALICS = 369,
154
- SANS = 370,
155
- TT = 371,
156
- ENCLOSE = 372,
157
- ENCLOSENOTATION = 373,
158
- ENCLOSEATTR = 374,
159
- ENCLOSETEXT = 375,
160
- BOLD = 376,
161
- BOXED = 377,
162
- FBOX = 378,
163
- HBOX = 379,
164
- MBOX = 380,
165
- BCANCELED = 381,
166
- XCANCELED = 382,
167
- CANCELEDTO = 383,
168
- NOT = 384,
169
- SLASHED = 385,
170
- PMB = 386,
171
- SCR = 387,
172
- RM = 388,
173
- BB = 389,
174
- ST = 390,
175
- END = 391,
176
- BBLOWERCHAR = 392,
177
- BBUPPERCHAR = 393,
178
- BBDIGIT = 394,
179
- CALCHAR = 395,
180
- FRAKCHAR = 396,
181
- CAL = 397,
182
- FRAK = 398,
183
- CLAP = 399,
184
- LLAP = 400,
185
- RLAP = 401,
186
- ROWOPTS = 402,
187
- TEXTSIZE = 403,
188
- OLDSTYLE = 404,
189
- SCSTY = 405,
190
- SCSIZE = 406,
191
- SCSCSIZE = 407,
192
- TINY = 408,
193
- TTINY = 409,
194
- SMALL = 410,
195
- NORMALSIZE = 411,
196
- LARGE = 412,
197
- LLARGE = 413,
198
- LLLARGE = 414,
199
- HUGE = 415,
200
- HHUGE = 416,
201
- DISPLAY = 417,
202
- TEXTSTY = 418,
203
- TEXTBOX = 419,
204
- TEXTSTRING = 420,
205
- COLORSTRING = 421,
206
- STYLESTRING = 422,
207
- VERBBOX = 423,
208
- VERBSTRING = 424,
209
- ACUTE = 425,
210
- GRAVE = 426,
211
- BREVE = 427,
212
- MATHRING = 428,
213
- XMLSTRING = 429,
214
- CELLOPTS = 430,
215
- ROWSPAN = 431,
216
- COLSPAN = 432,
217
- THINSPACE = 433,
218
- ENSPACE = 434,
219
- MEDSPACE = 435,
220
- THICKSPACE = 436,
221
- QUAD = 437,
222
- QQUAD = 438,
223
- NEGSPACE = 439,
224
- NEGMEDSPACE = 440,
225
- NEGTHICKSPACE = 441,
226
- STRUT = 442,
227
- MATHSTRUT = 443,
228
- SMASH = 444,
229
- PHANTOM = 445,
230
- HPHANTOM = 446,
231
- VPHANTOM = 447,
232
- HREF = 448,
233
- UNKNOWNCHAR = 449,
234
- EMPTYMROW = 450,
235
- STATLINE = 451,
236
- TOOLTIP = 452,
237
- TOGGLE = 453,
238
- TOGGLESTART = 454,
239
- TOGGLEEND = 455,
240
- FGHIGHLIGHT = 456,
241
- BGHIGHLIGHT = 457,
242
- COLORBOX = 458,
243
- SPACE = 459,
244
- NUMBER = 460,
245
- INTONE = 461,
246
- INTTWO = 462,
247
- INTTHREE = 463,
248
- OVERLEFTARROW = 464,
249
- OVERLEFTRIGHTARROW = 465,
250
- OVERRIGHTARROW = 466,
251
- UNDERLEFTARROW = 467,
252
- UNDERLEFTRIGHTARROW = 468,
253
- UNDERRIGHTARROW = 469,
254
- BAR = 470,
255
- WIDEBAR = 471,
256
- SKEW = 472,
257
- VEC = 473,
258
- WIDEVEC = 474,
259
- HAT = 475,
260
- WIDEHAT = 476,
261
- CHECK = 477,
262
- WIDECHECK = 478,
263
- TILDE = 479,
264
- WIDETILDE = 480,
265
- DOT = 481,
266
- DDOT = 482,
267
- DDDOT = 483,
268
- DDDDOT = 484,
269
- UNARYMINUS = 485,
270
- UNARYPLUS = 486,
271
- BEGINENV = 487,
272
- ENDENV = 488,
273
- EQUATION = 489,
274
- EQUATION_STAR = 490,
275
- EQALIGN = 491,
276
- EQALIGNNO = 492,
277
- MATRIX = 493,
278
- PMATRIX = 494,
279
- BMATRIX = 495,
280
- BBMATRIX = 496,
281
- VMATRIX = 497,
282
- VVMATRIX = 498,
283
- SUBARRAY = 499,
284
- SVG = 500,
285
- ENDSVG = 501,
286
- SMALLMATRIX = 502,
287
- CASES = 503,
288
- ALIGNED = 504,
289
- ALIGNENV = 505,
290
- ALIGNENV_STAR = 506,
291
- ALIGNAT = 507,
292
- ALIGNAT_STAR = 508,
293
- ALIGNEDAT = 509,
294
- GATHERED = 510,
295
- EQNARRAY = 511,
296
- EQNARRAY_STAR = 512,
297
- MULTLINE = 513,
298
- MULTLINE_STAR = 514,
299
- GATHER_STAR = 515,
300
- GATHER = 516,
301
- SUBSTACK = 517,
302
- SIDESET = 518,
303
- BMOD = 519,
304
- PMOD = 520,
305
- POD = 521,
306
- RMCHAR = 522,
307
- SCRCHAR = 523,
308
- PMBCHAR = 524,
309
- COLOR = 525,
310
- BGCOLOR = 526,
311
- LABEL = 527,
312
- TAG = 528,
313
- BBOX = 529,
314
- XARROW = 530,
315
- OPTARGOPEN = 531,
316
- OPTARGCLOSE = 532,
317
- MTEXNUM = 533,
318
- RAISEBOX = 534,
319
- NEG = 535,
320
- LATEXSYMBOL = 536,
321
- TEXSYMBOL = 537,
322
- VARINJLIM = 538,
323
- VARLIMINF = 539,
324
- VARLIMSUP = 540,
325
- VARPROJLIM = 541
326
- };
327
- #endif
328
- /* Tokens. */
329
- #define LIMITS 258
330
- #define TEXABOVEWITHDELIMS 259
331
- #define TEXABOVE 260
332
- #define TEXATOPWITHDELIMS 261
333
- #define TEXATOP 262
334
- #define TEXOVERWITHDELIMS 263
335
- #define TEXOVER 264
336
- #define CHAR 265
337
- #define STARTMATH 266
338
- #define STARTDMATH 267
339
- #define ENDMATH 268
340
- #define MTEXT 269
341
- #define MI 270
342
- #define MIB 271
343
- #define MN 272
344
- #define MO 273
345
- #define NOLIMITS 274
346
- #define SUP 275
347
- #define SUB 276
348
- #define MROWOPEN 277
349
- #define MROWCLOSE 278
350
- #define MATHOPEN 279
351
- #define MATHCLOSE 280
352
- #define MATHORD 281
353
- #define MATHPUNCT 282
354
- #define VCENTER 283
355
- #define LEFT 284
356
- #define RIGHT 285
357
- #define BIG 286
358
- #define BBIG 287
359
- #define BIGG 288
360
- #define BBIGG 289
361
- #define BIGL 290
362
- #define BBIGL 291
363
- #define BIGGL 292
364
- #define BBIGGL 293
365
- #define BIGM 294
366
- #define BBIGM 295
367
- #define BIGGM 296
368
- #define BBIGGM 297
369
- #define FRAC 298
370
- #define TFRAC 299
371
- #define DFRAC 300
372
- #define CFRAC 301
373
- #define GENFRAC 302
374
- #define OPERATORNAME 303
375
- #define MATHOP 304
376
- #define MATHBIN 305
377
- #define MATHREL 306
378
- #define MATHINNER 307
379
- #define MOP 308
380
- #define MOL 309
381
- #define MOLL 310
382
- #define MOF 311
383
- #define MOR 312
384
- #define PERIODDELIM 313
385
- #define COMMADELIM 314
386
- #define OTHERDELIM 315
387
- #define LEFTDELIM 316
388
- #define RIGHTDELIM 317
389
- #define MOS 318
390
- #define MOB 319
391
- #define SQRT 320
392
- #define ROOT 321
393
- #define OF 322
394
- #define LEFTROOT 323
395
- #define UPROOT 324
396
- #define BINOM 325
397
- #define TBINOM 326
398
- #define BRACE 327
399
- #define BRACK 328
400
- #define CHOOSE 329
401
- #define DBINOM 330
402
- #define UNDER 331
403
- #define BUILDREL 332
404
- #define OVER 333
405
- #define OVERBRACE 334
406
- #define OVERBRACKET 335
407
- #define UNDERLINE 336
408
- #define UNDERBRACE 337
409
- #define UNDERBRACKET 338
410
- #define UNDEROVER 339
411
- #define TENSOR 340
412
- #define MULTI 341
413
- #define ALIGNATVALUE 342
414
- #define ARRAYALIGN 343
415
- #define COLUMNALIGN 344
416
- #define ARRAY 345
417
- #define SPACECUBE 346
418
- #define HSPACE 347
419
- #define MOVELEFT 348
420
- #define MOVERIGHT 349
421
- #define RAISE 350
422
- #define LOWER 351
423
- #define PXSTRING 352
424
- #define COLSEP 353
425
- #define COLSEPSPACE 354
426
- #define ROWSEP 355
427
- #define NEWLINE 356
428
- #define ARRAYOPTS 357
429
- #define COLLAYOUT 358
430
- #define COLALIGN 359
431
- #define ROWALIGN 360
432
- #define ALIGN 361
433
- #define EQROWS 362
434
- #define EQCOLS 363
435
- #define ROWLINES 364
436
- #define COLLINES 365
437
- #define FRAME 366
438
- #define PADDING 367
439
- #define ATTRLIST 368
440
- #define ITALICS 369
441
- #define SANS 370
442
- #define TT 371
443
- #define ENCLOSE 372
444
- #define ENCLOSENOTATION 373
445
- #define ENCLOSEATTR 374
446
- #define ENCLOSETEXT 375
447
- #define BOLD 376
448
- #define BOXED 377
449
- #define FBOX 378
450
- #define HBOX 379
451
- #define MBOX 380
452
- #define BCANCELED 381
453
- #define XCANCELED 382
454
- #define CANCELEDTO 383
455
- #define NOT 384
456
- #define SLASHED 385
457
- #define PMB 386
458
- #define SCR 387
459
- #define RM 388
460
- #define BB 389
461
- #define ST 390
462
- #define END 391
463
- #define BBLOWERCHAR 392
464
- #define BBUPPERCHAR 393
465
- #define BBDIGIT 394
466
- #define CALCHAR 395
467
- #define FRAKCHAR 396
468
- #define CAL 397
469
- #define FRAK 398
470
- #define CLAP 399
471
- #define LLAP 400
472
- #define RLAP 401
473
- #define ROWOPTS 402
474
- #define TEXTSIZE 403
475
- #define OLDSTYLE 404
476
- #define SCSTY 405
477
- #define SCSIZE 406
478
- #define SCSCSIZE 407
479
- #define TINY 408
480
- #define TTINY 409
481
- #define SMALL 410
482
- #define NORMALSIZE 411
483
- #define LARGE 412
484
- #define LLARGE 413
485
- #define LLLARGE 414
486
- #define HUGE 415
487
- #define HHUGE 416
488
- #define DISPLAY 417
489
- #define TEXTSTY 418
490
- #define TEXTBOX 419
491
- #define TEXTSTRING 420
492
- #define COLORSTRING 421
493
- #define STYLESTRING 422
494
- #define VERBBOX 423
495
- #define VERBSTRING 424
496
- #define ACUTE 425
497
- #define GRAVE 426
498
- #define BREVE 427
499
- #define MATHRING 428
500
- #define XMLSTRING 429
501
- #define CELLOPTS 430
502
- #define ROWSPAN 431
503
- #define COLSPAN 432
504
- #define THINSPACE 433
505
- #define ENSPACE 434
506
- #define MEDSPACE 435
507
- #define THICKSPACE 436
508
- #define QUAD 437
509
- #define QQUAD 438
510
- #define NEGSPACE 439
511
- #define NEGMEDSPACE 440
512
- #define NEGTHICKSPACE 441
513
- #define STRUT 442
514
- #define MATHSTRUT 443
515
- #define SMASH 444
516
- #define PHANTOM 445
517
- #define HPHANTOM 446
518
- #define VPHANTOM 447
519
- #define HREF 448
520
- #define UNKNOWNCHAR 449
521
- #define EMPTYMROW 450
522
- #define STATLINE 451
523
- #define TOOLTIP 452
524
- #define TOGGLE 453
525
- #define TOGGLESTART 454
526
- #define TOGGLEEND 455
527
- #define FGHIGHLIGHT 456
528
- #define BGHIGHLIGHT 457
529
- #define COLORBOX 458
530
- #define SPACE 459
531
- #define NUMBER 460
532
- #define INTONE 461
533
- #define INTTWO 462
534
- #define INTTHREE 463
535
- #define OVERLEFTARROW 464
536
- #define OVERLEFTRIGHTARROW 465
537
- #define OVERRIGHTARROW 466
538
- #define UNDERLEFTARROW 467
539
- #define UNDERLEFTRIGHTARROW 468
540
- #define UNDERRIGHTARROW 469
541
- #define BAR 470
542
- #define WIDEBAR 471
543
- #define SKEW 472
544
- #define VEC 473
545
- #define WIDEVEC 474
546
- #define HAT 475
547
- #define WIDEHAT 476
548
- #define CHECK 477
549
- #define WIDECHECK 478
550
- #define TILDE 479
551
- #define WIDETILDE 480
552
- #define DOT 481
553
- #define DDOT 482
554
- #define DDDOT 483
555
- #define DDDDOT 484
556
- #define UNARYMINUS 485
557
- #define UNARYPLUS 486
558
- #define BEGINENV 487
559
- #define ENDENV 488
560
- #define EQUATION 489
561
- #define EQUATION_STAR 490
562
- #define EQALIGN 491
563
- #define EQALIGNNO 492
564
- #define MATRIX 493
565
- #define PMATRIX 494
566
- #define BMATRIX 495
567
- #define BBMATRIX 496
568
- #define VMATRIX 497
569
- #define VVMATRIX 498
570
- #define SUBARRAY 499
571
- #define SVG 500
572
- #define ENDSVG 501
573
- #define SMALLMATRIX 502
574
- #define CASES 503
575
- #define ALIGNED 504
576
- #define ALIGNENV 505
577
- #define ALIGNENV_STAR 506
578
- #define ALIGNAT 507
579
- #define ALIGNAT_STAR 508
580
- #define ALIGNEDAT 509
581
- #define GATHERED 510
582
- #define EQNARRAY 511
583
- #define EQNARRAY_STAR 512
584
- #define MULTLINE 513
585
- #define MULTLINE_STAR 514
586
- #define GATHER_STAR 515
587
- #define GATHER 516
588
- #define SUBSTACK 517
589
- #define SIDESET 518
590
- #define BMOD 519
591
- #define PMOD 520
592
- #define POD 521
593
- #define RMCHAR 522
594
- #define SCRCHAR 523
595
- #define PMBCHAR 524
596
- #define COLOR 525
597
- #define BGCOLOR 526
598
- #define LABEL 527
599
- #define TAG 528
600
- #define BBOX 529
601
- #define XARROW 530
602
- #define OPTARGOPEN 531
603
- #define OPTARGCLOSE 532
604
- #define MTEXNUM 533
605
- #define RAISEBOX 534
606
- #define NEG 535
607
- #define LATEXSYMBOL 536
608
- #define TEXSYMBOL 537
609
- #define VARINJLIM 538
610
- #define VARLIMINF 539
611
- #define VARLIMSUP 540
612
- #define VARPROJLIM 541
613
-
614
-
615
-
616
-
617
- #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
618
- typedef int YYSTYPE;
619
- # define yystype YYSTYPE /* obsolescent; will be withdrawn */
620
- # define YYSTYPE_IS_DECLARED 1
621
- # define YYSTYPE_IS_TRIVIAL 1
622
- #endif
623
-
624
- extern YYSTYPE mtex2MML_yylval;
625
-