isomorfeus-ferret 0.12.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (222) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +612 -0
  3. data/README.md +44 -0
  4. data/ext/isomorfeus_ferret_ext/benchmark.c +223 -0
  5. data/ext/isomorfeus_ferret_ext/benchmark.h +45 -0
  6. data/ext/isomorfeus_ferret_ext/benchmarks_all.h +25 -0
  7. data/ext/isomorfeus_ferret_ext/bm_bitvector.c +123 -0
  8. data/ext/isomorfeus_ferret_ext/bm_hash.c +118 -0
  9. data/ext/isomorfeus_ferret_ext/bm_micro_string.c +40 -0
  10. data/ext/isomorfeus_ferret_ext/bm_store.c +93 -0
  11. data/ext/isomorfeus_ferret_ext/email.rl +21 -0
  12. data/ext/isomorfeus_ferret_ext/extconf.rb +5 -0
  13. data/ext/isomorfeus_ferret_ext/fio_tmpfile.h +53 -0
  14. data/ext/isomorfeus_ferret_ext/frb_analysis.c +2577 -0
  15. data/ext/isomorfeus_ferret_ext/frb_index.c +3457 -0
  16. data/ext/isomorfeus_ferret_ext/frb_lang.c +9 -0
  17. data/ext/isomorfeus_ferret_ext/frb_lang.h +17 -0
  18. data/ext/isomorfeus_ferret_ext/frb_qparser.c +629 -0
  19. data/ext/isomorfeus_ferret_ext/frb_search.c +4460 -0
  20. data/ext/isomorfeus_ferret_ext/frb_store.c +515 -0
  21. data/ext/isomorfeus_ferret_ext/frb_threading.h +30 -0
  22. data/ext/isomorfeus_ferret_ext/frb_utils.c +1127 -0
  23. data/ext/isomorfeus_ferret_ext/frt_analysis.c +1644 -0
  24. data/ext/isomorfeus_ferret_ext/frt_analysis.h +247 -0
  25. data/ext/isomorfeus_ferret_ext/frt_array.c +124 -0
  26. data/ext/isomorfeus_ferret_ext/frt_array.h +54 -0
  27. data/ext/isomorfeus_ferret_ext/frt_bitvector.c +95 -0
  28. data/ext/isomorfeus_ferret_ext/frt_bitvector.h +586 -0
  29. data/ext/isomorfeus_ferret_ext/frt_compound_io.c +374 -0
  30. data/ext/isomorfeus_ferret_ext/frt_config.h +44 -0
  31. data/ext/isomorfeus_ferret_ext/frt_document.c +134 -0
  32. data/ext/isomorfeus_ferret_ext/frt_document.h +52 -0
  33. data/ext/isomorfeus_ferret_ext/frt_except.c +95 -0
  34. data/ext/isomorfeus_ferret_ext/frt_except.h +188 -0
  35. data/ext/isomorfeus_ferret_ext/frt_field_index.c +233 -0
  36. data/ext/isomorfeus_ferret_ext/frt_field_index.h +42 -0
  37. data/ext/isomorfeus_ferret_ext/frt_filter.c +157 -0
  38. data/ext/isomorfeus_ferret_ext/frt_fs_store.c +502 -0
  39. data/ext/isomorfeus_ferret_ext/frt_global.c +427 -0
  40. data/ext/isomorfeus_ferret_ext/frt_global.h +290 -0
  41. data/ext/isomorfeus_ferret_ext/frt_hash.c +518 -0
  42. data/ext/isomorfeus_ferret_ext/frt_hash.h +466 -0
  43. data/ext/isomorfeus_ferret_ext/frt_hashset.c +191 -0
  44. data/ext/isomorfeus_ferret_ext/frt_hashset.h +206 -0
  45. data/ext/isomorfeus_ferret_ext/frt_helper.c +62 -0
  46. data/ext/isomorfeus_ferret_ext/frt_helper.h +13 -0
  47. data/ext/isomorfeus_ferret_ext/frt_ind.c +353 -0
  48. data/ext/isomorfeus_ferret_ext/frt_ind.h +54 -0
  49. data/ext/isomorfeus_ferret_ext/frt_index.c +6377 -0
  50. data/ext/isomorfeus_ferret_ext/frt_index.h +880 -0
  51. data/ext/isomorfeus_ferret_ext/frt_lang.c +104 -0
  52. data/ext/isomorfeus_ferret_ext/frt_lang.h +44 -0
  53. data/ext/isomorfeus_ferret_ext/frt_mempool.c +87 -0
  54. data/ext/isomorfeus_ferret_ext/frt_mempool.h +33 -0
  55. data/ext/isomorfeus_ferret_ext/frt_multimapper.c +349 -0
  56. data/ext/isomorfeus_ferret_ext/frt_multimapper.h +52 -0
  57. data/ext/isomorfeus_ferret_ext/frt_posh.c +1006 -0
  58. data/ext/isomorfeus_ferret_ext/frt_posh.h +973 -0
  59. data/ext/isomorfeus_ferret_ext/frt_priorityqueue.c +147 -0
  60. data/ext/isomorfeus_ferret_ext/frt_priorityqueue.h +147 -0
  61. data/ext/isomorfeus_ferret_ext/frt_q_boolean.c +1612 -0
  62. data/ext/isomorfeus_ferret_ext/frt_q_const_score.c +157 -0
  63. data/ext/isomorfeus_ferret_ext/frt_q_filtered_query.c +209 -0
  64. data/ext/isomorfeus_ferret_ext/frt_q_fuzzy.c +281 -0
  65. data/ext/isomorfeus_ferret_ext/frt_q_match_all.c +147 -0
  66. data/ext/isomorfeus_ferret_ext/frt_q_multi_term.c +672 -0
  67. data/ext/isomorfeus_ferret_ext/frt_q_parser.c +3084 -0
  68. data/ext/isomorfeus_ferret_ext/frt_q_phrase.c +1182 -0
  69. data/ext/isomorfeus_ferret_ext/frt_q_prefix.c +98 -0
  70. data/ext/isomorfeus_ferret_ext/frt_q_range.c +665 -0
  71. data/ext/isomorfeus_ferret_ext/frt_q_span.c +2386 -0
  72. data/ext/isomorfeus_ferret_ext/frt_q_term.c +311 -0
  73. data/ext/isomorfeus_ferret_ext/frt_q_wildcard.c +166 -0
  74. data/ext/isomorfeus_ferret_ext/frt_ram_store.c +460 -0
  75. data/ext/isomorfeus_ferret_ext/frt_scanner.c +899 -0
  76. data/ext/isomorfeus_ferret_ext/frt_scanner.h +28 -0
  77. data/ext/isomorfeus_ferret_ext/frt_scanner_mb.c +6705 -0
  78. data/ext/isomorfeus_ferret_ext/frt_scanner_utf8.c +4419 -0
  79. data/ext/isomorfeus_ferret_ext/frt_search.c +1824 -0
  80. data/ext/isomorfeus_ferret_ext/frt_search.h +924 -0
  81. data/ext/isomorfeus_ferret_ext/frt_similarity.c +150 -0
  82. data/ext/isomorfeus_ferret_ext/frt_similarity.h +79 -0
  83. data/ext/isomorfeus_ferret_ext/frt_sort.c +796 -0
  84. data/ext/isomorfeus_ferret_ext/frt_stopwords.c +395 -0
  85. data/ext/isomorfeus_ferret_ext/frt_store.c +680 -0
  86. data/ext/isomorfeus_ferret_ext/frt_store.h +789 -0
  87. data/ext/isomorfeus_ferret_ext/frt_term_vectors.c +72 -0
  88. data/ext/isomorfeus_ferret_ext/frt_threading.h +23 -0
  89. data/ext/isomorfeus_ferret_ext/frt_win32.h +54 -0
  90. data/ext/isomorfeus_ferret_ext/isomorfeus_ferret.c +409 -0
  91. data/ext/isomorfeus_ferret_ext/isomorfeus_ferret.h +95 -0
  92. data/ext/isomorfeus_ferret_ext/libstemmer.c +93 -0
  93. data/ext/isomorfeus_ferret_ext/libstemmer.h +73 -0
  94. data/ext/isomorfeus_ferret_ext/q_parser.y +1366 -0
  95. data/ext/isomorfeus_ferret_ext/scanner.h +28 -0
  96. data/ext/isomorfeus_ferret_ext/scanner.in +43 -0
  97. data/ext/isomorfeus_ferret_ext/scanner.rl +84 -0
  98. data/ext/isomorfeus_ferret_ext/scanner_mb.rl +200 -0
  99. data/ext/isomorfeus_ferret_ext/scanner_utf8.rl +85 -0
  100. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_danish.c +324 -0
  101. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_danish.h +7 -0
  102. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_dutch.c +610 -0
  103. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_dutch.h +6 -0
  104. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_english.c +1104 -0
  105. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_english.h +6 -0
  106. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_finnish.c +749 -0
  107. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_finnish.h +7 -0
  108. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_french.c +1233 -0
  109. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_french.h +6 -0
  110. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_german.c +490 -0
  111. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_german.h +6 -0
  112. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_hungarian.c +1217 -0
  113. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_hungarian.h +7 -0
  114. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_italian.c +1052 -0
  115. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_italian.h +6 -0
  116. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_norwegian.c +283 -0
  117. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_norwegian.h +6 -0
  118. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_porter.c +735 -0
  119. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_porter.h +6 -0
  120. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_portuguese.c +1003 -0
  121. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_portuguese.h +7 -0
  122. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_spanish.c +1079 -0
  123. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_spanish.h +6 -0
  124. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_swedish.c +293 -0
  125. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_swedish.h +6 -0
  126. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_romanian.c +984 -0
  127. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_romanian.h +6 -0
  128. data/ext/isomorfeus_ferret_ext/stem_KOI8_R_russian.c +686 -0
  129. data/ext/isomorfeus_ferret_ext/stem_KOI8_R_russian.h +6 -0
  130. data/ext/isomorfeus_ferret_ext/stem_UTF_8_danish.c +325 -0
  131. data/ext/isomorfeus_ferret_ext/stem_UTF_8_danish.h +6 -0
  132. data/ext/isomorfeus_ferret_ext/stem_UTF_8_dutch.c +620 -0
  133. data/ext/isomorfeus_ferret_ext/stem_UTF_8_dutch.h +6 -0
  134. data/ext/isomorfeus_ferret_ext/stem_UTF_8_english.c +1111 -0
  135. data/ext/isomorfeus_ferret_ext/stem_UTF_8_english.h +6 -0
  136. data/ext/isomorfeus_ferret_ext/stem_UTF_8_finnish.c +754 -0
  137. data/ext/isomorfeus_ferret_ext/stem_UTF_8_finnish.h +6 -0
  138. data/ext/isomorfeus_ferret_ext/stem_UTF_8_french.c +1242 -0
  139. data/ext/isomorfeus_ferret_ext/stem_UTF_8_french.h +6 -0
  140. data/ext/isomorfeus_ferret_ext/stem_UTF_8_german.c +495 -0
  141. data/ext/isomorfeus_ferret_ext/stem_UTF_8_german.h +6 -0
  142. data/ext/isomorfeus_ferret_ext/stem_UTF_8_hungarian.c +1220 -0
  143. data/ext/isomorfeus_ferret_ext/stem_UTF_8_hungarian.h +6 -0
  144. data/ext/isomorfeus_ferret_ext/stem_UTF_8_italian.c +1059 -0
  145. data/ext/isomorfeus_ferret_ext/stem_UTF_8_italian.h +6 -0
  146. data/ext/isomorfeus_ferret_ext/stem_UTF_8_norwegian.c +285 -0
  147. data/ext/isomorfeus_ferret_ext/stem_UTF_8_norwegian.h +6 -0
  148. data/ext/isomorfeus_ferret_ext/stem_UTF_8_porter.c +741 -0
  149. data/ext/isomorfeus_ferret_ext/stem_UTF_8_porter.h +6 -0
  150. data/ext/isomorfeus_ferret_ext/stem_UTF_8_portuguese.c +1009 -0
  151. data/ext/isomorfeus_ferret_ext/stem_UTF_8_portuguese.h +6 -0
  152. data/ext/isomorfeus_ferret_ext/stem_UTF_8_romanian.c +990 -0
  153. data/ext/isomorfeus_ferret_ext/stem_UTF_8_romanian.h +6 -0
  154. data/ext/isomorfeus_ferret_ext/stem_UTF_8_russian.c +680 -0
  155. data/ext/isomorfeus_ferret_ext/stem_UTF_8_russian.h +6 -0
  156. data/ext/isomorfeus_ferret_ext/stem_UTF_8_spanish.c +1083 -0
  157. data/ext/isomorfeus_ferret_ext/stem_UTF_8_spanish.h +6 -0
  158. data/ext/isomorfeus_ferret_ext/stem_UTF_8_swedish.c +294 -0
  159. data/ext/isomorfeus_ferret_ext/stem_UTF_8_swedish.h +6 -0
  160. data/ext/isomorfeus_ferret_ext/stem_UTF_8_turkish.c +2191 -0
  161. data/ext/isomorfeus_ferret_ext/stem_UTF_8_turkish.h +6 -0
  162. data/ext/isomorfeus_ferret_ext/stem_api.c +66 -0
  163. data/ext/isomorfeus_ferret_ext/stem_api.h +26 -0
  164. data/ext/isomorfeus_ferret_ext/stem_header.h +57 -0
  165. data/ext/isomorfeus_ferret_ext/stem_modules.h +190 -0
  166. data/ext/isomorfeus_ferret_ext/stem_modules.txt +50 -0
  167. data/ext/isomorfeus_ferret_ext/stem_utilities.c +478 -0
  168. data/ext/isomorfeus_ferret_ext/test.c +850 -0
  169. data/ext/isomorfeus_ferret_ext/test.h +416 -0
  170. data/ext/isomorfeus_ferret_ext/test_1710.c +63 -0
  171. data/ext/isomorfeus_ferret_ext/test_analysis.c +1221 -0
  172. data/ext/isomorfeus_ferret_ext/test_array.c +272 -0
  173. data/ext/isomorfeus_ferret_ext/test_bitvector.c +600 -0
  174. data/ext/isomorfeus_ferret_ext/test_compound_io.c +170 -0
  175. data/ext/isomorfeus_ferret_ext/test_document.c +156 -0
  176. data/ext/isomorfeus_ferret_ext/test_except.c +244 -0
  177. data/ext/isomorfeus_ferret_ext/test_fields.c +522 -0
  178. data/ext/isomorfeus_ferret_ext/test_file_deleter.c +185 -0
  179. data/ext/isomorfeus_ferret_ext/test_filter.c +331 -0
  180. data/ext/isomorfeus_ferret_ext/test_fs_store.c +25 -0
  181. data/ext/isomorfeus_ferret_ext/test_global.c +299 -0
  182. data/ext/isomorfeus_ferret_ext/test_hash.c +485 -0
  183. data/ext/isomorfeus_ferret_ext/test_hashset.c +288 -0
  184. data/ext/isomorfeus_ferret_ext/test_helper.c +47 -0
  185. data/ext/isomorfeus_ferret_ext/test_highlighter.c +548 -0
  186. data/ext/isomorfeus_ferret_ext/test_index.c +2323 -0
  187. data/ext/isomorfeus_ferret_ext/test_lang.c +74 -0
  188. data/ext/isomorfeus_ferret_ext/test_mempool.c +102 -0
  189. data/ext/isomorfeus_ferret_ext/test_multimapper.c +64 -0
  190. data/ext/isomorfeus_ferret_ext/test_priorityqueue.c +213 -0
  191. data/ext/isomorfeus_ferret_ext/test_q_const_score.c +84 -0
  192. data/ext/isomorfeus_ferret_ext/test_q_filtered.c +61 -0
  193. data/ext/isomorfeus_ferret_ext/test_q_fuzzy.c +241 -0
  194. data/ext/isomorfeus_ferret_ext/test_q_parser.c +464 -0
  195. data/ext/isomorfeus_ferret_ext/test_q_span.c +575 -0
  196. data/ext/isomorfeus_ferret_ext/test_ram_store.c +77 -0
  197. data/ext/isomorfeus_ferret_ext/test_search.c +1874 -0
  198. data/ext/isomorfeus_ferret_ext/test_segments.c +167 -0
  199. data/ext/isomorfeus_ferret_ext/test_similarity.c +25 -0
  200. data/ext/isomorfeus_ferret_ext/test_sort.c +333 -0
  201. data/ext/isomorfeus_ferret_ext/test_store.c +591 -0
  202. data/ext/isomorfeus_ferret_ext/test_store.h +3 -0
  203. data/ext/isomorfeus_ferret_ext/test_term.c +351 -0
  204. data/ext/isomorfeus_ferret_ext/test_term_vectors.c +373 -0
  205. data/ext/isomorfeus_ferret_ext/test_test.c +83 -0
  206. data/ext/isomorfeus_ferret_ext/test_threading.c +188 -0
  207. data/ext/isomorfeus_ferret_ext/testhelper.c +561 -0
  208. data/ext/isomorfeus_ferret_ext/testhelper.h +25 -0
  209. data/ext/isomorfeus_ferret_ext/tests_all.h +87 -0
  210. data/ext/isomorfeus_ferret_ext/uchar-ucs4.rl +1854 -0
  211. data/ext/isomorfeus_ferret_ext/uchar-utf8.rl +1999 -0
  212. data/ext/isomorfeus_ferret_ext/url.rl +27 -0
  213. data/ext/isomorfeus_ferret_ext/word_list.h +15156 -0
  214. data/lib/isomorfeus/ferret/document.rb +132 -0
  215. data/lib/isomorfeus/ferret/field_symbol.rb +85 -0
  216. data/lib/isomorfeus/ferret/index/field_infos.rb +48 -0
  217. data/lib/isomorfeus/ferret/index/index.rb +970 -0
  218. data/lib/isomorfeus/ferret/monitor.rb +323 -0
  219. data/lib/isomorfeus/ferret/stdlib_patches.rb +151 -0
  220. data/lib/isomorfeus/ferret/version.rb +5 -0
  221. data/lib/isomorfeus-ferret.rb +8 -0
  222. metadata +307 -0
@@ -0,0 +1,1233 @@
1
+
2
+ /* This file was generated automatically by the Snowball to ANSI C compiler */
3
+
4
+ #include "stem_header.h"
5
+
6
+ extern int french_ISO_8859_1_stem(struct SN_env * z);
7
+
8
+ static int r_un_accent(struct SN_env * z);
9
+ static int r_un_double(struct SN_env * z);
10
+ static int r_residual_suffix(struct SN_env * z);
11
+ static int r_verb_suffix(struct SN_env * z);
12
+ static int r_i_verb_suffix(struct SN_env * z);
13
+ static int r_standard_suffix(struct SN_env * z);
14
+ static int r_R2(struct SN_env * z);
15
+ static int r_R1(struct SN_env * z);
16
+ static int r_RV(struct SN_env * z);
17
+ static int r_mark_regions(struct SN_env * z);
18
+ static int r_postlude(struct SN_env * z);
19
+ static int r_prelude(struct SN_env * z);
20
+
21
+ extern struct SN_env * french_ISO_8859_1_create_env(void);
22
+ extern void french_ISO_8859_1_close_env(struct SN_env * z);
23
+
24
+ static const symbol s_0_0[3] = { 'c', 'o', 'l' };
25
+ static const symbol s_0_1[3] = { 'p', 'a', 'r' };
26
+ static const symbol s_0_2[3] = { 't', 'a', 'p' };
27
+
28
+ static const struct among a_0[3] =
29
+ {
30
+ /* 0 */ { 3, s_0_0, -1, -1, 0},
31
+ /* 1 */ { 3, s_0_1, -1, -1, 0},
32
+ /* 2 */ { 3, s_0_2, -1, -1, 0}
33
+ };
34
+
35
+ static const symbol s_1_1[1] = { 'I' };
36
+ static const symbol s_1_2[1] = { 'U' };
37
+ static const symbol s_1_3[1] = { 'Y' };
38
+
39
+ static const struct among a_1[4] =
40
+ {
41
+ /* 0 */ { 0, 0, -1, 4, 0},
42
+ /* 1 */ { 1, s_1_1, 0, 1, 0},
43
+ /* 2 */ { 1, s_1_2, 0, 2, 0},
44
+ /* 3 */ { 1, s_1_3, 0, 3, 0}
45
+ };
46
+
47
+ static const symbol s_2_0[3] = { 'i', 'q', 'U' };
48
+ static const symbol s_2_1[3] = { 'a', 'b', 'l' };
49
+ static const symbol s_2_2[3] = { 'I', 0xE8, 'r' };
50
+ static const symbol s_2_3[3] = { 'i', 0xE8, 'r' };
51
+ static const symbol s_2_4[3] = { 'e', 'u', 's' };
52
+ static const symbol s_2_5[2] = { 'i', 'v' };
53
+
54
+ static const struct among a_2[6] =
55
+ {
56
+ /* 0 */ { 3, s_2_0, -1, 3, 0},
57
+ /* 1 */ { 3, s_2_1, -1, 3, 0},
58
+ /* 2 */ { 3, s_2_2, -1, 4, 0},
59
+ /* 3 */ { 3, s_2_3, -1, 4, 0},
60
+ /* 4 */ { 3, s_2_4, -1, 2, 0},
61
+ /* 5 */ { 2, s_2_5, -1, 1, 0}
62
+ };
63
+
64
+ static const symbol s_3_0[2] = { 'i', 'c' };
65
+ static const symbol s_3_1[4] = { 'a', 'b', 'i', 'l' };
66
+ static const symbol s_3_2[2] = { 'i', 'v' };
67
+
68
+ static const struct among a_3[3] =
69
+ {
70
+ /* 0 */ { 2, s_3_0, -1, 2, 0},
71
+ /* 1 */ { 4, s_3_1, -1, 1, 0},
72
+ /* 2 */ { 2, s_3_2, -1, 3, 0}
73
+ };
74
+
75
+ static const symbol s_4_0[4] = { 'i', 'q', 'U', 'e' };
76
+ static const symbol s_4_1[6] = { 'a', 't', 'r', 'i', 'c', 'e' };
77
+ static const symbol s_4_2[4] = { 'a', 'n', 'c', 'e' };
78
+ static const symbol s_4_3[4] = { 'e', 'n', 'c', 'e' };
79
+ static const symbol s_4_4[5] = { 'l', 'o', 'g', 'i', 'e' };
80
+ static const symbol s_4_5[4] = { 'a', 'b', 'l', 'e' };
81
+ static const symbol s_4_6[4] = { 'i', 's', 'm', 'e' };
82
+ static const symbol s_4_7[4] = { 'e', 'u', 's', 'e' };
83
+ static const symbol s_4_8[4] = { 'i', 's', 't', 'e' };
84
+ static const symbol s_4_9[3] = { 'i', 'v', 'e' };
85
+ static const symbol s_4_10[2] = { 'i', 'f' };
86
+ static const symbol s_4_11[5] = { 'u', 's', 'i', 'o', 'n' };
87
+ static const symbol s_4_12[5] = { 'a', 't', 'i', 'o', 'n' };
88
+ static const symbol s_4_13[5] = { 'u', 't', 'i', 'o', 'n' };
89
+ static const symbol s_4_14[5] = { 'a', 't', 'e', 'u', 'r' };
90
+ static const symbol s_4_15[5] = { 'i', 'q', 'U', 'e', 's' };
91
+ static const symbol s_4_16[7] = { 'a', 't', 'r', 'i', 'c', 'e', 's' };
92
+ static const symbol s_4_17[5] = { 'a', 'n', 'c', 'e', 's' };
93
+ static const symbol s_4_18[5] = { 'e', 'n', 'c', 'e', 's' };
94
+ static const symbol s_4_19[6] = { 'l', 'o', 'g', 'i', 'e', 's' };
95
+ static const symbol s_4_20[5] = { 'a', 'b', 'l', 'e', 's' };
96
+ static const symbol s_4_21[5] = { 'i', 's', 'm', 'e', 's' };
97
+ static const symbol s_4_22[5] = { 'e', 'u', 's', 'e', 's' };
98
+ static const symbol s_4_23[5] = { 'i', 's', 't', 'e', 's' };
99
+ static const symbol s_4_24[4] = { 'i', 'v', 'e', 's' };
100
+ static const symbol s_4_25[3] = { 'i', 'f', 's' };
101
+ static const symbol s_4_26[6] = { 'u', 's', 'i', 'o', 'n', 's' };
102
+ static const symbol s_4_27[6] = { 'a', 't', 'i', 'o', 'n', 's' };
103
+ static const symbol s_4_28[6] = { 'u', 't', 'i', 'o', 'n', 's' };
104
+ static const symbol s_4_29[6] = { 'a', 't', 'e', 'u', 'r', 's' };
105
+ static const symbol s_4_30[5] = { 'm', 'e', 'n', 't', 's' };
106
+ static const symbol s_4_31[6] = { 'e', 'm', 'e', 'n', 't', 's' };
107
+ static const symbol s_4_32[9] = { 'i', 's', 's', 'e', 'm', 'e', 'n', 't', 's' };
108
+ static const symbol s_4_33[4] = { 'i', 't', 0xE9, 's' };
109
+ static const symbol s_4_34[4] = { 'm', 'e', 'n', 't' };
110
+ static const symbol s_4_35[5] = { 'e', 'm', 'e', 'n', 't' };
111
+ static const symbol s_4_36[8] = { 'i', 's', 's', 'e', 'm', 'e', 'n', 't' };
112
+ static const symbol s_4_37[6] = { 'a', 'm', 'm', 'e', 'n', 't' };
113
+ static const symbol s_4_38[6] = { 'e', 'm', 'm', 'e', 'n', 't' };
114
+ static const symbol s_4_39[3] = { 'a', 'u', 'x' };
115
+ static const symbol s_4_40[4] = { 'e', 'a', 'u', 'x' };
116
+ static const symbol s_4_41[3] = { 'e', 'u', 'x' };
117
+ static const symbol s_4_42[3] = { 'i', 't', 0xE9 };
118
+
119
+ static const struct among a_4[43] =
120
+ {
121
+ /* 0 */ { 4, s_4_0, -1, 1, 0},
122
+ /* 1 */ { 6, s_4_1, -1, 2, 0},
123
+ /* 2 */ { 4, s_4_2, -1, 1, 0},
124
+ /* 3 */ { 4, s_4_3, -1, 5, 0},
125
+ /* 4 */ { 5, s_4_4, -1, 3, 0},
126
+ /* 5 */ { 4, s_4_5, -1, 1, 0},
127
+ /* 6 */ { 4, s_4_6, -1, 1, 0},
128
+ /* 7 */ { 4, s_4_7, -1, 11, 0},
129
+ /* 8 */ { 4, s_4_8, -1, 1, 0},
130
+ /* 9 */ { 3, s_4_9, -1, 8, 0},
131
+ /* 10 */ { 2, s_4_10, -1, 8, 0},
132
+ /* 11 */ { 5, s_4_11, -1, 4, 0},
133
+ /* 12 */ { 5, s_4_12, -1, 2, 0},
134
+ /* 13 */ { 5, s_4_13, -1, 4, 0},
135
+ /* 14 */ { 5, s_4_14, -1, 2, 0},
136
+ /* 15 */ { 5, s_4_15, -1, 1, 0},
137
+ /* 16 */ { 7, s_4_16, -1, 2, 0},
138
+ /* 17 */ { 5, s_4_17, -1, 1, 0},
139
+ /* 18 */ { 5, s_4_18, -1, 5, 0},
140
+ /* 19 */ { 6, s_4_19, -1, 3, 0},
141
+ /* 20 */ { 5, s_4_20, -1, 1, 0},
142
+ /* 21 */ { 5, s_4_21, -1, 1, 0},
143
+ /* 22 */ { 5, s_4_22, -1, 11, 0},
144
+ /* 23 */ { 5, s_4_23, -1, 1, 0},
145
+ /* 24 */ { 4, s_4_24, -1, 8, 0},
146
+ /* 25 */ { 3, s_4_25, -1, 8, 0},
147
+ /* 26 */ { 6, s_4_26, -1, 4, 0},
148
+ /* 27 */ { 6, s_4_27, -1, 2, 0},
149
+ /* 28 */ { 6, s_4_28, -1, 4, 0},
150
+ /* 29 */ { 6, s_4_29, -1, 2, 0},
151
+ /* 30 */ { 5, s_4_30, -1, 15, 0},
152
+ /* 31 */ { 6, s_4_31, 30, 6, 0},
153
+ /* 32 */ { 9, s_4_32, 31, 12, 0},
154
+ /* 33 */ { 4, s_4_33, -1, 7, 0},
155
+ /* 34 */ { 4, s_4_34, -1, 15, 0},
156
+ /* 35 */ { 5, s_4_35, 34, 6, 0},
157
+ /* 36 */ { 8, s_4_36, 35, 12, 0},
158
+ /* 37 */ { 6, s_4_37, 34, 13, 0},
159
+ /* 38 */ { 6, s_4_38, 34, 14, 0},
160
+ /* 39 */ { 3, s_4_39, -1, 10, 0},
161
+ /* 40 */ { 4, s_4_40, 39, 9, 0},
162
+ /* 41 */ { 3, s_4_41, -1, 1, 0},
163
+ /* 42 */ { 3, s_4_42, -1, 7, 0}
164
+ };
165
+
166
+ static const symbol s_5_0[3] = { 'i', 'r', 'a' };
167
+ static const symbol s_5_1[2] = { 'i', 'e' };
168
+ static const symbol s_5_2[4] = { 'i', 's', 's', 'e' };
169
+ static const symbol s_5_3[7] = { 'i', 's', 's', 'a', 'n', 't', 'e' };
170
+ static const symbol s_5_4[1] = { 'i' };
171
+ static const symbol s_5_5[4] = { 'i', 'r', 'a', 'i' };
172
+ static const symbol s_5_6[2] = { 'i', 'r' };
173
+ static const symbol s_5_7[4] = { 'i', 'r', 'a', 's' };
174
+ static const symbol s_5_8[3] = { 'i', 'e', 's' };
175
+ static const symbol s_5_9[4] = { 0xEE, 'm', 'e', 's' };
176
+ static const symbol s_5_10[5] = { 'i', 's', 's', 'e', 's' };
177
+ static const symbol s_5_11[8] = { 'i', 's', 's', 'a', 'n', 't', 'e', 's' };
178
+ static const symbol s_5_12[4] = { 0xEE, 't', 'e', 's' };
179
+ static const symbol s_5_13[2] = { 'i', 's' };
180
+ static const symbol s_5_14[5] = { 'i', 'r', 'a', 'i', 's' };
181
+ static const symbol s_5_15[6] = { 'i', 's', 's', 'a', 'i', 's' };
182
+ static const symbol s_5_16[6] = { 'i', 'r', 'i', 'o', 'n', 's' };
183
+ static const symbol s_5_17[7] = { 'i', 's', 's', 'i', 'o', 'n', 's' };
184
+ static const symbol s_5_18[5] = { 'i', 'r', 'o', 'n', 's' };
185
+ static const symbol s_5_19[6] = { 'i', 's', 's', 'o', 'n', 's' };
186
+ static const symbol s_5_20[7] = { 'i', 's', 's', 'a', 'n', 't', 's' };
187
+ static const symbol s_5_21[2] = { 'i', 't' };
188
+ static const symbol s_5_22[5] = { 'i', 'r', 'a', 'i', 't' };
189
+ static const symbol s_5_23[6] = { 'i', 's', 's', 'a', 'i', 't' };
190
+ static const symbol s_5_24[6] = { 'i', 's', 's', 'a', 'n', 't' };
191
+ static const symbol s_5_25[7] = { 'i', 'r', 'a', 'I', 'e', 'n', 't' };
192
+ static const symbol s_5_26[8] = { 'i', 's', 's', 'a', 'I', 'e', 'n', 't' };
193
+ static const symbol s_5_27[5] = { 'i', 'r', 'e', 'n', 't' };
194
+ static const symbol s_5_28[6] = { 'i', 's', 's', 'e', 'n', 't' };
195
+ static const symbol s_5_29[5] = { 'i', 'r', 'o', 'n', 't' };
196
+ static const symbol s_5_30[2] = { 0xEE, 't' };
197
+ static const symbol s_5_31[5] = { 'i', 'r', 'i', 'e', 'z' };
198
+ static const symbol s_5_32[6] = { 'i', 's', 's', 'i', 'e', 'z' };
199
+ static const symbol s_5_33[4] = { 'i', 'r', 'e', 'z' };
200
+ static const symbol s_5_34[5] = { 'i', 's', 's', 'e', 'z' };
201
+
202
+ static const struct among a_5[35] =
203
+ {
204
+ /* 0 */ { 3, s_5_0, -1, 1, 0},
205
+ /* 1 */ { 2, s_5_1, -1, 1, 0},
206
+ /* 2 */ { 4, s_5_2, -1, 1, 0},
207
+ /* 3 */ { 7, s_5_3, -1, 1, 0},
208
+ /* 4 */ { 1, s_5_4, -1, 1, 0},
209
+ /* 5 */ { 4, s_5_5, 4, 1, 0},
210
+ /* 6 */ { 2, s_5_6, -1, 1, 0},
211
+ /* 7 */ { 4, s_5_7, -1, 1, 0},
212
+ /* 8 */ { 3, s_5_8, -1, 1, 0},
213
+ /* 9 */ { 4, s_5_9, -1, 1, 0},
214
+ /* 10 */ { 5, s_5_10, -1, 1, 0},
215
+ /* 11 */ { 8, s_5_11, -1, 1, 0},
216
+ /* 12 */ { 4, s_5_12, -1, 1, 0},
217
+ /* 13 */ { 2, s_5_13, -1, 1, 0},
218
+ /* 14 */ { 5, s_5_14, 13, 1, 0},
219
+ /* 15 */ { 6, s_5_15, 13, 1, 0},
220
+ /* 16 */ { 6, s_5_16, -1, 1, 0},
221
+ /* 17 */ { 7, s_5_17, -1, 1, 0},
222
+ /* 18 */ { 5, s_5_18, -1, 1, 0},
223
+ /* 19 */ { 6, s_5_19, -1, 1, 0},
224
+ /* 20 */ { 7, s_5_20, -1, 1, 0},
225
+ /* 21 */ { 2, s_5_21, -1, 1, 0},
226
+ /* 22 */ { 5, s_5_22, 21, 1, 0},
227
+ /* 23 */ { 6, s_5_23, 21, 1, 0},
228
+ /* 24 */ { 6, s_5_24, -1, 1, 0},
229
+ /* 25 */ { 7, s_5_25, -1, 1, 0},
230
+ /* 26 */ { 8, s_5_26, -1, 1, 0},
231
+ /* 27 */ { 5, s_5_27, -1, 1, 0},
232
+ /* 28 */ { 6, s_5_28, -1, 1, 0},
233
+ /* 29 */ { 5, s_5_29, -1, 1, 0},
234
+ /* 30 */ { 2, s_5_30, -1, 1, 0},
235
+ /* 31 */ { 5, s_5_31, -1, 1, 0},
236
+ /* 32 */ { 6, s_5_32, -1, 1, 0},
237
+ /* 33 */ { 4, s_5_33, -1, 1, 0},
238
+ /* 34 */ { 5, s_5_34, -1, 1, 0}
239
+ };
240
+
241
+ static const symbol s_6_0[1] = { 'a' };
242
+ static const symbol s_6_1[3] = { 'e', 'r', 'a' };
243
+ static const symbol s_6_2[4] = { 'a', 's', 's', 'e' };
244
+ static const symbol s_6_3[4] = { 'a', 'n', 't', 'e' };
245
+ static const symbol s_6_4[2] = { 0xE9, 'e' };
246
+ static const symbol s_6_5[2] = { 'a', 'i' };
247
+ static const symbol s_6_6[4] = { 'e', 'r', 'a', 'i' };
248
+ static const symbol s_6_7[2] = { 'e', 'r' };
249
+ static const symbol s_6_8[2] = { 'a', 's' };
250
+ static const symbol s_6_9[4] = { 'e', 'r', 'a', 's' };
251
+ static const symbol s_6_10[4] = { 0xE2, 'm', 'e', 's' };
252
+ static const symbol s_6_11[5] = { 'a', 's', 's', 'e', 's' };
253
+ static const symbol s_6_12[5] = { 'a', 'n', 't', 'e', 's' };
254
+ static const symbol s_6_13[4] = { 0xE2, 't', 'e', 's' };
255
+ static const symbol s_6_14[3] = { 0xE9, 'e', 's' };
256
+ static const symbol s_6_15[3] = { 'a', 'i', 's' };
257
+ static const symbol s_6_16[5] = { 'e', 'r', 'a', 'i', 's' };
258
+ static const symbol s_6_17[4] = { 'i', 'o', 'n', 's' };
259
+ static const symbol s_6_18[6] = { 'e', 'r', 'i', 'o', 'n', 's' };
260
+ static const symbol s_6_19[7] = { 'a', 's', 's', 'i', 'o', 'n', 's' };
261
+ static const symbol s_6_20[5] = { 'e', 'r', 'o', 'n', 's' };
262
+ static const symbol s_6_21[4] = { 'a', 'n', 't', 's' };
263
+ static const symbol s_6_22[2] = { 0xE9, 's' };
264
+ static const symbol s_6_23[3] = { 'a', 'i', 't' };
265
+ static const symbol s_6_24[5] = { 'e', 'r', 'a', 'i', 't' };
266
+ static const symbol s_6_25[3] = { 'a', 'n', 't' };
267
+ static const symbol s_6_26[5] = { 'a', 'I', 'e', 'n', 't' };
268
+ static const symbol s_6_27[7] = { 'e', 'r', 'a', 'I', 'e', 'n', 't' };
269
+ static const symbol s_6_28[5] = { 0xE8, 'r', 'e', 'n', 't' };
270
+ static const symbol s_6_29[6] = { 'a', 's', 's', 'e', 'n', 't' };
271
+ static const symbol s_6_30[5] = { 'e', 'r', 'o', 'n', 't' };
272
+ static const symbol s_6_31[2] = { 0xE2, 't' };
273
+ static const symbol s_6_32[2] = { 'e', 'z' };
274
+ static const symbol s_6_33[3] = { 'i', 'e', 'z' };
275
+ static const symbol s_6_34[5] = { 'e', 'r', 'i', 'e', 'z' };
276
+ static const symbol s_6_35[6] = { 'a', 's', 's', 'i', 'e', 'z' };
277
+ static const symbol s_6_36[4] = { 'e', 'r', 'e', 'z' };
278
+ static const symbol s_6_37[1] = { 0xE9 };
279
+
280
+ static const struct among a_6[38] =
281
+ {
282
+ /* 0 */ { 1, s_6_0, -1, 3, 0},
283
+ /* 1 */ { 3, s_6_1, 0, 2, 0},
284
+ /* 2 */ { 4, s_6_2, -1, 3, 0},
285
+ /* 3 */ { 4, s_6_3, -1, 3, 0},
286
+ /* 4 */ { 2, s_6_4, -1, 2, 0},
287
+ /* 5 */ { 2, s_6_5, -1, 3, 0},
288
+ /* 6 */ { 4, s_6_6, 5, 2, 0},
289
+ /* 7 */ { 2, s_6_7, -1, 2, 0},
290
+ /* 8 */ { 2, s_6_8, -1, 3, 0},
291
+ /* 9 */ { 4, s_6_9, 8, 2, 0},
292
+ /* 10 */ { 4, s_6_10, -1, 3, 0},
293
+ /* 11 */ { 5, s_6_11, -1, 3, 0},
294
+ /* 12 */ { 5, s_6_12, -1, 3, 0},
295
+ /* 13 */ { 4, s_6_13, -1, 3, 0},
296
+ /* 14 */ { 3, s_6_14, -1, 2, 0},
297
+ /* 15 */ { 3, s_6_15, -1, 3, 0},
298
+ /* 16 */ { 5, s_6_16, 15, 2, 0},
299
+ /* 17 */ { 4, s_6_17, -1, 1, 0},
300
+ /* 18 */ { 6, s_6_18, 17, 2, 0},
301
+ /* 19 */ { 7, s_6_19, 17, 3, 0},
302
+ /* 20 */ { 5, s_6_20, -1, 2, 0},
303
+ /* 21 */ { 4, s_6_21, -1, 3, 0},
304
+ /* 22 */ { 2, s_6_22, -1, 2, 0},
305
+ /* 23 */ { 3, s_6_23, -1, 3, 0},
306
+ /* 24 */ { 5, s_6_24, 23, 2, 0},
307
+ /* 25 */ { 3, s_6_25, -1, 3, 0},
308
+ /* 26 */ { 5, s_6_26, -1, 3, 0},
309
+ /* 27 */ { 7, s_6_27, 26, 2, 0},
310
+ /* 28 */ { 5, s_6_28, -1, 2, 0},
311
+ /* 29 */ { 6, s_6_29, -1, 3, 0},
312
+ /* 30 */ { 5, s_6_30, -1, 2, 0},
313
+ /* 31 */ { 2, s_6_31, -1, 3, 0},
314
+ /* 32 */ { 2, s_6_32, -1, 2, 0},
315
+ /* 33 */ { 3, s_6_33, 32, 2, 0},
316
+ /* 34 */ { 5, s_6_34, 33, 2, 0},
317
+ /* 35 */ { 6, s_6_35, 33, 3, 0},
318
+ /* 36 */ { 4, s_6_36, 32, 2, 0},
319
+ /* 37 */ { 1, s_6_37, -1, 2, 0}
320
+ };
321
+
322
+ static const symbol s_7_0[1] = { 'e' };
323
+ static const symbol s_7_1[4] = { 'I', 0xE8, 'r', 'e' };
324
+ static const symbol s_7_2[4] = { 'i', 0xE8, 'r', 'e' };
325
+ static const symbol s_7_3[3] = { 'i', 'o', 'n' };
326
+ static const symbol s_7_4[3] = { 'I', 'e', 'r' };
327
+ static const symbol s_7_5[3] = { 'i', 'e', 'r' };
328
+ static const symbol s_7_6[1] = { 0xEB };
329
+
330
+ static const struct among a_7[7] =
331
+ {
332
+ /* 0 */ { 1, s_7_0, -1, 3, 0},
333
+ /* 1 */ { 4, s_7_1, 0, 2, 0},
334
+ /* 2 */ { 4, s_7_2, 0, 2, 0},
335
+ /* 3 */ { 3, s_7_3, -1, 1, 0},
336
+ /* 4 */ { 3, s_7_4, -1, 2, 0},
337
+ /* 5 */ { 3, s_7_5, -1, 2, 0},
338
+ /* 6 */ { 1, s_7_6, -1, 4, 0}
339
+ };
340
+
341
+ static const symbol s_8_0[3] = { 'e', 'l', 'l' };
342
+ static const symbol s_8_1[4] = { 'e', 'i', 'l', 'l' };
343
+ static const symbol s_8_2[3] = { 'e', 'n', 'n' };
344
+ static const symbol s_8_3[3] = { 'o', 'n', 'n' };
345
+ static const symbol s_8_4[3] = { 'e', 't', 't' };
346
+
347
+ static const struct among a_8[5] =
348
+ {
349
+ /* 0 */ { 3, s_8_0, -1, -1, 0},
350
+ /* 1 */ { 4, s_8_1, -1, -1, 0},
351
+ /* 2 */ { 3, s_8_2, -1, -1, 0},
352
+ /* 3 */ { 3, s_8_3, -1, -1, 0},
353
+ /* 4 */ { 3, s_8_4, -1, -1, 0}
354
+ };
355
+
356
+ static const unsigned char g_v[] = { 17, 65, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 130, 103, 8, 5 };
357
+
358
+ static const unsigned char g_keep_with_s[] = { 1, 65, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128 };
359
+
360
+ static const symbol s_0[] = { 'u' };
361
+ static const symbol s_1[] = { 'U' };
362
+ static const symbol s_2[] = { 'i' };
363
+ static const symbol s_3[] = { 'I' };
364
+ static const symbol s_4[] = { 'y' };
365
+ static const symbol s_5[] = { 'Y' };
366
+ static const symbol s_6[] = { 'y' };
367
+ static const symbol s_7[] = { 'Y' };
368
+ static const symbol s_8[] = { 'q' };
369
+ static const symbol s_9[] = { 'u' };
370
+ static const symbol s_10[] = { 'U' };
371
+ static const symbol s_11[] = { 'i' };
372
+ static const symbol s_12[] = { 'u' };
373
+ static const symbol s_13[] = { 'y' };
374
+ static const symbol s_14[] = { 'i', 'c' };
375
+ static const symbol s_15[] = { 'i', 'q', 'U' };
376
+ static const symbol s_16[] = { 'l', 'o', 'g' };
377
+ static const symbol s_17[] = { 'u' };
378
+ static const symbol s_18[] = { 'e', 'n', 't' };
379
+ static const symbol s_19[] = { 'a', 't' };
380
+ static const symbol s_20[] = { 'e', 'u', 'x' };
381
+ static const symbol s_21[] = { 'i' };
382
+ static const symbol s_22[] = { 'a', 'b', 'l' };
383
+ static const symbol s_23[] = { 'i', 'q', 'U' };
384
+ static const symbol s_24[] = { 'a', 't' };
385
+ static const symbol s_25[] = { 'i', 'c' };
386
+ static const symbol s_26[] = { 'i', 'q', 'U' };
387
+ static const symbol s_27[] = { 'e', 'a', 'u' };
388
+ static const symbol s_28[] = { 'a', 'l' };
389
+ static const symbol s_29[] = { 'e', 'u', 'x' };
390
+ static const symbol s_30[] = { 'a', 'n', 't' };
391
+ static const symbol s_31[] = { 'e', 'n', 't' };
392
+ static const symbol s_32[] = { 'e' };
393
+ static const symbol s_33[] = { 's' };
394
+ static const symbol s_34[] = { 's' };
395
+ static const symbol s_35[] = { 't' };
396
+ static const symbol s_36[] = { 'i' };
397
+ static const symbol s_37[] = { 'g', 'u' };
398
+ static const symbol s_38[] = { 0xE9 };
399
+ static const symbol s_39[] = { 0xE8 };
400
+ static const symbol s_40[] = { 'e' };
401
+ static const symbol s_41[] = { 'Y' };
402
+ static const symbol s_42[] = { 'i' };
403
+ static const symbol s_43[] = { 0xE7 };
404
+ static const symbol s_44[] = { 'c' };
405
+
406
+ static int r_prelude(struct SN_env * z) {
407
+ while(1) { /* repeat, line 38 */
408
+ int c1 = z->c;
409
+ while(1) { /* goto, line 38 */
410
+ int c2 = z->c;
411
+ { int c3 = z->c; /* or, line 44 */
412
+ if (in_grouping(z, g_v, 97, 251, 0)) goto lab3;
413
+ z->bra = z->c; /* [, line 40 */
414
+ { int c4 = z->c; /* or, line 40 */
415
+ if (!(eq_s(z, 1, s_0))) goto lab5;
416
+ z->ket = z->c; /* ], line 40 */
417
+ if (in_grouping(z, g_v, 97, 251, 0)) goto lab5;
418
+ { int ret = slice_from_s(z, 1, s_1); /* <-, line 40 */
419
+ if (ret < 0) return ret;
420
+ }
421
+ goto lab4;
422
+ lab5:
423
+ z->c = c4;
424
+ if (!(eq_s(z, 1, s_2))) goto lab6;
425
+ z->ket = z->c; /* ], line 41 */
426
+ if (in_grouping(z, g_v, 97, 251, 0)) goto lab6;
427
+ { int ret = slice_from_s(z, 1, s_3); /* <-, line 41 */
428
+ if (ret < 0) return ret;
429
+ }
430
+ goto lab4;
431
+ lab6:
432
+ z->c = c4;
433
+ if (!(eq_s(z, 1, s_4))) goto lab3;
434
+ z->ket = z->c; /* ], line 42 */
435
+ { int ret = slice_from_s(z, 1, s_5); /* <-, line 42 */
436
+ if (ret < 0) return ret;
437
+ }
438
+ }
439
+ lab4:
440
+ goto lab2;
441
+ lab3:
442
+ z->c = c3;
443
+ z->bra = z->c; /* [, line 45 */
444
+ if (!(eq_s(z, 1, s_6))) goto lab7;
445
+ z->ket = z->c; /* ], line 45 */
446
+ if (in_grouping(z, g_v, 97, 251, 0)) goto lab7;
447
+ { int ret = slice_from_s(z, 1, s_7); /* <-, line 45 */
448
+ if (ret < 0) return ret;
449
+ }
450
+ goto lab2;
451
+ lab7:
452
+ z->c = c3;
453
+ if (!(eq_s(z, 1, s_8))) goto lab1;
454
+ z->bra = z->c; /* [, line 47 */
455
+ if (!(eq_s(z, 1, s_9))) goto lab1;
456
+ z->ket = z->c; /* ], line 47 */
457
+ { int ret = slice_from_s(z, 1, s_10); /* <-, line 47 */
458
+ if (ret < 0) return ret;
459
+ }
460
+ }
461
+ lab2:
462
+ z->c = c2;
463
+ break;
464
+ lab1:
465
+ z->c = c2;
466
+ if (z->c >= z->l) goto lab0;
467
+ z->c++; /* goto, line 38 */
468
+ }
469
+ continue;
470
+ lab0:
471
+ z->c = c1;
472
+ break;
473
+ }
474
+ return 1;
475
+ }
476
+
477
+ static int r_mark_regions(struct SN_env * z) {
478
+ z->I[0] = z->l;
479
+ z->I[1] = z->l;
480
+ z->I[2] = z->l;
481
+ { int c1 = z->c; /* do, line 56 */
482
+ { int c2 = z->c; /* or, line 58 */
483
+ if (in_grouping(z, g_v, 97, 251, 0)) goto lab2;
484
+ if (in_grouping(z, g_v, 97, 251, 0)) goto lab2;
485
+ if (z->c >= z->l) goto lab2;
486
+ z->c++; /* next, line 57 */
487
+ goto lab1;
488
+ lab2:
489
+ z->c = c2;
490
+ if (z->c + 2 >= z->l || z->p[z->c + 2] >> 5 != 3 || !((331776 >> (z->p[z->c + 2] & 0x1f)) & 1)) goto lab3;
491
+ if (!(find_among(z, a_0, 3))) goto lab3; /* among, line 59 */
492
+ goto lab1;
493
+ lab3:
494
+ z->c = c2;
495
+ if (z->c >= z->l) goto lab0;
496
+ z->c++; /* next, line 66 */
497
+ { /* gopast */ /* grouping v, line 66 */
498
+ int ret = out_grouping(z, g_v, 97, 251, 1);
499
+ if (ret < 0) goto lab0;
500
+ z->c += ret;
501
+ }
502
+ }
503
+ lab1:
504
+ z->I[0] = z->c; /* setmark pV, line 67 */
505
+ lab0:
506
+ z->c = c1;
507
+ }
508
+ { int c3 = z->c; /* do, line 69 */
509
+ { /* gopast */ /* grouping v, line 70 */
510
+ int ret = out_grouping(z, g_v, 97, 251, 1);
511
+ if (ret < 0) goto lab4;
512
+ z->c += ret;
513
+ }
514
+ { /* gopast */ /* non v, line 70 */
515
+ int ret = in_grouping(z, g_v, 97, 251, 1);
516
+ if (ret < 0) goto lab4;
517
+ z->c += ret;
518
+ }
519
+ z->I[1] = z->c; /* setmark p1, line 70 */
520
+ { /* gopast */ /* grouping v, line 71 */
521
+ int ret = out_grouping(z, g_v, 97, 251, 1);
522
+ if (ret < 0) goto lab4;
523
+ z->c += ret;
524
+ }
525
+ { /* gopast */ /* non v, line 71 */
526
+ int ret = in_grouping(z, g_v, 97, 251, 1);
527
+ if (ret < 0) goto lab4;
528
+ z->c += ret;
529
+ }
530
+ z->I[2] = z->c; /* setmark p2, line 71 */
531
+ lab4:
532
+ z->c = c3;
533
+ }
534
+ return 1;
535
+ }
536
+
537
+ static int r_postlude(struct SN_env * z) {
538
+ int among_var;
539
+ while(1) { /* repeat, line 75 */
540
+ int c1 = z->c;
541
+ z->bra = z->c; /* [, line 77 */
542
+ if (z->c >= z->l || z->p[z->c + 0] >> 5 != 2 || !((35652096 >> (z->p[z->c + 0] & 0x1f)) & 1)) among_var = 4; else
543
+ among_var = find_among(z, a_1, 4); /* substring, line 77 */
544
+ if (!(among_var)) goto lab0;
545
+ z->ket = z->c; /* ], line 77 */
546
+ switch(among_var) {
547
+ case 0: goto lab0;
548
+ case 1:
549
+ { int ret = slice_from_s(z, 1, s_11); /* <-, line 78 */
550
+ if (ret < 0) return ret;
551
+ }
552
+ break;
553
+ case 2:
554
+ { int ret = slice_from_s(z, 1, s_12); /* <-, line 79 */
555
+ if (ret < 0) return ret;
556
+ }
557
+ break;
558
+ case 3:
559
+ { int ret = slice_from_s(z, 1, s_13); /* <-, line 80 */
560
+ if (ret < 0) return ret;
561
+ }
562
+ break;
563
+ case 4:
564
+ if (z->c >= z->l) goto lab0;
565
+ z->c++; /* next, line 81 */
566
+ break;
567
+ }
568
+ continue;
569
+ lab0:
570
+ z->c = c1;
571
+ break;
572
+ }
573
+ return 1;
574
+ }
575
+
576
+ static int r_RV(struct SN_env * z) {
577
+ if (!(z->I[0] <= z->c)) return 0;
578
+ return 1;
579
+ }
580
+
581
+ static int r_R1(struct SN_env * z) {
582
+ if (!(z->I[1] <= z->c)) return 0;
583
+ return 1;
584
+ }
585
+
586
+ static int r_R2(struct SN_env * z) {
587
+ if (!(z->I[2] <= z->c)) return 0;
588
+ return 1;
589
+ }
590
+
591
+ static int r_standard_suffix(struct SN_env * z) {
592
+ int among_var;
593
+ z->ket = z->c; /* [, line 92 */
594
+ among_var = find_among_b(z, a_4, 43); /* substring, line 92 */
595
+ if (!(among_var)) return 0;
596
+ z->bra = z->c; /* ], line 92 */
597
+ switch(among_var) {
598
+ case 0: return 0;
599
+ case 1:
600
+ { int ret = r_R2(z);
601
+ if (ret == 0) return 0; /* call R2, line 96 */
602
+ if (ret < 0) return ret;
603
+ }
604
+ { int ret = slice_del(z); /* delete, line 96 */
605
+ if (ret < 0) return ret;
606
+ }
607
+ break;
608
+ case 2:
609
+ { int ret = r_R2(z);
610
+ if (ret == 0) return 0; /* call R2, line 99 */
611
+ if (ret < 0) return ret;
612
+ }
613
+ { int ret = slice_del(z); /* delete, line 99 */
614
+ if (ret < 0) return ret;
615
+ }
616
+ { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 100 */
617
+ z->ket = z->c; /* [, line 100 */
618
+ if (!(eq_s_b(z, 2, s_14))) { z->c = z->l - m_keep; goto lab0; }
619
+ z->bra = z->c; /* ], line 100 */
620
+ { int m1 = z->l - z->c; (void)m1; /* or, line 100 */
621
+ { int ret = r_R2(z);
622
+ if (ret == 0) goto lab2; /* call R2, line 100 */
623
+ if (ret < 0) return ret;
624
+ }
625
+ { int ret = slice_del(z); /* delete, line 100 */
626
+ if (ret < 0) return ret;
627
+ }
628
+ goto lab1;
629
+ lab2:
630
+ z->c = z->l - m1;
631
+ { int ret = slice_from_s(z, 3, s_15); /* <-, line 100 */
632
+ if (ret < 0) return ret;
633
+ }
634
+ }
635
+ lab1:
636
+ lab0:
637
+ ;
638
+ }
639
+ break;
640
+ case 3:
641
+ { int ret = r_R2(z);
642
+ if (ret == 0) return 0; /* call R2, line 104 */
643
+ if (ret < 0) return ret;
644
+ }
645
+ { int ret = slice_from_s(z, 3, s_16); /* <-, line 104 */
646
+ if (ret < 0) return ret;
647
+ }
648
+ break;
649
+ case 4:
650
+ { int ret = r_R2(z);
651
+ if (ret == 0) return 0; /* call R2, line 107 */
652
+ if (ret < 0) return ret;
653
+ }
654
+ { int ret = slice_from_s(z, 1, s_17); /* <-, line 107 */
655
+ if (ret < 0) return ret;
656
+ }
657
+ break;
658
+ case 5:
659
+ { int ret = r_R2(z);
660
+ if (ret == 0) return 0; /* call R2, line 110 */
661
+ if (ret < 0) return ret;
662
+ }
663
+ { int ret = slice_from_s(z, 3, s_18); /* <-, line 110 */
664
+ if (ret < 0) return ret;
665
+ }
666
+ break;
667
+ case 6:
668
+ { int ret = r_RV(z);
669
+ if (ret == 0) return 0; /* call RV, line 114 */
670
+ if (ret < 0) return ret;
671
+ }
672
+ { int ret = slice_del(z); /* delete, line 114 */
673
+ if (ret < 0) return ret;
674
+ }
675
+ { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 115 */
676
+ z->ket = z->c; /* [, line 116 */
677
+ among_var = find_among_b(z, a_2, 6); /* substring, line 116 */
678
+ if (!(among_var)) { z->c = z->l - m_keep; goto lab3; }
679
+ z->bra = z->c; /* ], line 116 */
680
+ switch(among_var) {
681
+ case 0: { z->c = z->l - m_keep; goto lab3; }
682
+ case 1:
683
+ { int ret = r_R2(z);
684
+ if (ret == 0) { z->c = z->l - m_keep; goto lab3; } /* call R2, line 117 */
685
+ if (ret < 0) return ret;
686
+ }
687
+ { int ret = slice_del(z); /* delete, line 117 */
688
+ if (ret < 0) return ret;
689
+ }
690
+ z->ket = z->c; /* [, line 117 */
691
+ if (!(eq_s_b(z, 2, s_19))) { z->c = z->l - m_keep; goto lab3; }
692
+ z->bra = z->c; /* ], line 117 */
693
+ { int ret = r_R2(z);
694
+ if (ret == 0) { z->c = z->l - m_keep; goto lab3; } /* call R2, line 117 */
695
+ if (ret < 0) return ret;
696
+ }
697
+ { int ret = slice_del(z); /* delete, line 117 */
698
+ if (ret < 0) return ret;
699
+ }
700
+ break;
701
+ case 2:
702
+ { int m2 = z->l - z->c; (void)m2; /* or, line 118 */
703
+ { int ret = r_R2(z);
704
+ if (ret == 0) goto lab5; /* call R2, line 118 */
705
+ if (ret < 0) return ret;
706
+ }
707
+ { int ret = slice_del(z); /* delete, line 118 */
708
+ if (ret < 0) return ret;
709
+ }
710
+ goto lab4;
711
+ lab5:
712
+ z->c = z->l - m2;
713
+ { int ret = r_R1(z);
714
+ if (ret == 0) { z->c = z->l - m_keep; goto lab3; } /* call R1, line 118 */
715
+ if (ret < 0) return ret;
716
+ }
717
+ { int ret = slice_from_s(z, 3, s_20); /* <-, line 118 */
718
+ if (ret < 0) return ret;
719
+ }
720
+ }
721
+ lab4:
722
+ break;
723
+ case 3:
724
+ { int ret = r_R2(z);
725
+ if (ret == 0) { z->c = z->l - m_keep; goto lab3; } /* call R2, line 120 */
726
+ if (ret < 0) return ret;
727
+ }
728
+ { int ret = slice_del(z); /* delete, line 120 */
729
+ if (ret < 0) return ret;
730
+ }
731
+ break;
732
+ case 4:
733
+ { int ret = r_RV(z);
734
+ if (ret == 0) { z->c = z->l - m_keep; goto lab3; } /* call RV, line 122 */
735
+ if (ret < 0) return ret;
736
+ }
737
+ { int ret = slice_from_s(z, 1, s_21); /* <-, line 122 */
738
+ if (ret < 0) return ret;
739
+ }
740
+ break;
741
+ }
742
+ lab3:
743
+ ;
744
+ }
745
+ break;
746
+ case 7:
747
+ { int ret = r_R2(z);
748
+ if (ret == 0) return 0; /* call R2, line 129 */
749
+ if (ret < 0) return ret;
750
+ }
751
+ { int ret = slice_del(z); /* delete, line 129 */
752
+ if (ret < 0) return ret;
753
+ }
754
+ { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 130 */
755
+ z->ket = z->c; /* [, line 131 */
756
+ if (z->c - 1 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((4198408 >> (z->p[z->c - 1] & 0x1f)) & 1)) { z->c = z->l - m_keep; goto lab6; }
757
+ among_var = find_among_b(z, a_3, 3); /* substring, line 131 */
758
+ if (!(among_var)) { z->c = z->l - m_keep; goto lab6; }
759
+ z->bra = z->c; /* ], line 131 */
760
+ switch(among_var) {
761
+ case 0: { z->c = z->l - m_keep; goto lab6; }
762
+ case 1:
763
+ { int m3 = z->l - z->c; (void)m3; /* or, line 132 */
764
+ { int ret = r_R2(z);
765
+ if (ret == 0) goto lab8; /* call R2, line 132 */
766
+ if (ret < 0) return ret;
767
+ }
768
+ { int ret = slice_del(z); /* delete, line 132 */
769
+ if (ret < 0) return ret;
770
+ }
771
+ goto lab7;
772
+ lab8:
773
+ z->c = z->l - m3;
774
+ { int ret = slice_from_s(z, 3, s_22); /* <-, line 132 */
775
+ if (ret < 0) return ret;
776
+ }
777
+ }
778
+ lab7:
779
+ break;
780
+ case 2:
781
+ { int m4 = z->l - z->c; (void)m4; /* or, line 133 */
782
+ { int ret = r_R2(z);
783
+ if (ret == 0) goto lab10; /* call R2, line 133 */
784
+ if (ret < 0) return ret;
785
+ }
786
+ { int ret = slice_del(z); /* delete, line 133 */
787
+ if (ret < 0) return ret;
788
+ }
789
+ goto lab9;
790
+ lab10:
791
+ z->c = z->l - m4;
792
+ { int ret = slice_from_s(z, 3, s_23); /* <-, line 133 */
793
+ if (ret < 0) return ret;
794
+ }
795
+ }
796
+ lab9:
797
+ break;
798
+ case 3:
799
+ { int ret = r_R2(z);
800
+ if (ret == 0) { z->c = z->l - m_keep; goto lab6; } /* call R2, line 134 */
801
+ if (ret < 0) return ret;
802
+ }
803
+ { int ret = slice_del(z); /* delete, line 134 */
804
+ if (ret < 0) return ret;
805
+ }
806
+ break;
807
+ }
808
+ lab6:
809
+ ;
810
+ }
811
+ break;
812
+ case 8:
813
+ { int ret = r_R2(z);
814
+ if (ret == 0) return 0; /* call R2, line 141 */
815
+ if (ret < 0) return ret;
816
+ }
817
+ { int ret = slice_del(z); /* delete, line 141 */
818
+ if (ret < 0) return ret;
819
+ }
820
+ { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 142 */
821
+ z->ket = z->c; /* [, line 142 */
822
+ if (!(eq_s_b(z, 2, s_24))) { z->c = z->l - m_keep; goto lab11; }
823
+ z->bra = z->c; /* ], line 142 */
824
+ { int ret = r_R2(z);
825
+ if (ret == 0) { z->c = z->l - m_keep; goto lab11; } /* call R2, line 142 */
826
+ if (ret < 0) return ret;
827
+ }
828
+ { int ret = slice_del(z); /* delete, line 142 */
829
+ if (ret < 0) return ret;
830
+ }
831
+ z->ket = z->c; /* [, line 142 */
832
+ if (!(eq_s_b(z, 2, s_25))) { z->c = z->l - m_keep; goto lab11; }
833
+ z->bra = z->c; /* ], line 142 */
834
+ { int m5 = z->l - z->c; (void)m5; /* or, line 142 */
835
+ { int ret = r_R2(z);
836
+ if (ret == 0) goto lab13; /* call R2, line 142 */
837
+ if (ret < 0) return ret;
838
+ }
839
+ { int ret = slice_del(z); /* delete, line 142 */
840
+ if (ret < 0) return ret;
841
+ }
842
+ goto lab12;
843
+ lab13:
844
+ z->c = z->l - m5;
845
+ { int ret = slice_from_s(z, 3, s_26); /* <-, line 142 */
846
+ if (ret < 0) return ret;
847
+ }
848
+ }
849
+ lab12:
850
+ lab11:
851
+ ;
852
+ }
853
+ break;
854
+ case 9:
855
+ { int ret = slice_from_s(z, 3, s_27); /* <-, line 144 */
856
+ if (ret < 0) return ret;
857
+ }
858
+ break;
859
+ case 10:
860
+ { int ret = r_R1(z);
861
+ if (ret == 0) return 0; /* call R1, line 145 */
862
+ if (ret < 0) return ret;
863
+ }
864
+ { int ret = slice_from_s(z, 2, s_28); /* <-, line 145 */
865
+ if (ret < 0) return ret;
866
+ }
867
+ break;
868
+ case 11:
869
+ { int m6 = z->l - z->c; (void)m6; /* or, line 147 */
870
+ { int ret = r_R2(z);
871
+ if (ret == 0) goto lab15; /* call R2, line 147 */
872
+ if (ret < 0) return ret;
873
+ }
874
+ { int ret = slice_del(z); /* delete, line 147 */
875
+ if (ret < 0) return ret;
876
+ }
877
+ goto lab14;
878
+ lab15:
879
+ z->c = z->l - m6;
880
+ { int ret = r_R1(z);
881
+ if (ret == 0) return 0; /* call R1, line 147 */
882
+ if (ret < 0) return ret;
883
+ }
884
+ { int ret = slice_from_s(z, 3, s_29); /* <-, line 147 */
885
+ if (ret < 0) return ret;
886
+ }
887
+ }
888
+ lab14:
889
+ break;
890
+ case 12:
891
+ { int ret = r_R1(z);
892
+ if (ret == 0) return 0; /* call R1, line 150 */
893
+ if (ret < 0) return ret;
894
+ }
895
+ if (out_grouping_b(z, g_v, 97, 251, 0)) return 0;
896
+ { int ret = slice_del(z); /* delete, line 150 */
897
+ if (ret < 0) return ret;
898
+ }
899
+ break;
900
+ case 13:
901
+ { int ret = r_RV(z);
902
+ if (ret == 0) return 0; /* call RV, line 155 */
903
+ if (ret < 0) return ret;
904
+ }
905
+ { int ret = slice_from_s(z, 3, s_30); /* <-, line 155 */
906
+ if (ret < 0) return ret;
907
+ }
908
+ return 0; /* fail, line 155 */
909
+ break;
910
+ case 14:
911
+ { int ret = r_RV(z);
912
+ if (ret == 0) return 0; /* call RV, line 156 */
913
+ if (ret < 0) return ret;
914
+ }
915
+ { int ret = slice_from_s(z, 3, s_31); /* <-, line 156 */
916
+ if (ret < 0) return ret;
917
+ }
918
+ return 0; /* fail, line 156 */
919
+ break;
920
+ case 15:
921
+ { int m_test = z->l - z->c; /* test, line 158 */
922
+ if (in_grouping_b(z, g_v, 97, 251, 0)) return 0;
923
+ { int ret = r_RV(z);
924
+ if (ret == 0) return 0; /* call RV, line 158 */
925
+ if (ret < 0) return ret;
926
+ }
927
+ z->c = z->l - m_test;
928
+ }
929
+ { int ret = slice_del(z); /* delete, line 158 */
930
+ if (ret < 0) return ret;
931
+ }
932
+ return 0; /* fail, line 158 */
933
+ break;
934
+ }
935
+ return 1;
936
+ }
937
+
938
+ static int r_i_verb_suffix(struct SN_env * z) {
939
+ int among_var;
940
+ { int mlimit; /* setlimit, line 163 */
941
+ int m1 = z->l - z->c; (void)m1;
942
+ if (z->c < z->I[0]) return 0;
943
+ z->c = z->I[0]; /* tomark, line 163 */
944
+ mlimit = z->lb; z->lb = z->c;
945
+ z->c = z->l - m1;
946
+ z->ket = z->c; /* [, line 164 */
947
+ if (z->c <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((68944418 >> (z->p[z->c - 1] & 0x1f)) & 1)) { z->lb = mlimit; return 0; }
948
+ among_var = find_among_b(z, a_5, 35); /* substring, line 164 */
949
+ if (!(among_var)) { z->lb = mlimit; return 0; }
950
+ z->bra = z->c; /* ], line 164 */
951
+ switch(among_var) {
952
+ case 0: { z->lb = mlimit; return 0; }
953
+ case 1:
954
+ if (out_grouping_b(z, g_v, 97, 251, 0)) { z->lb = mlimit; return 0; }
955
+ { int ret = slice_del(z); /* delete, line 170 */
956
+ if (ret < 0) return ret;
957
+ }
958
+ break;
959
+ }
960
+ z->lb = mlimit;
961
+ }
962
+ return 1;
963
+ }
964
+
965
+ static int r_verb_suffix(struct SN_env * z) {
966
+ int among_var;
967
+ { int mlimit; /* setlimit, line 174 */
968
+ int m1 = z->l - z->c; (void)m1;
969
+ if (z->c < z->I[0]) return 0;
970
+ z->c = z->I[0]; /* tomark, line 174 */
971
+ mlimit = z->lb; z->lb = z->c;
972
+ z->c = z->l - m1;
973
+ z->ket = z->c; /* [, line 175 */
974
+ among_var = find_among_b(z, a_6, 38); /* substring, line 175 */
975
+ if (!(among_var)) { z->lb = mlimit; return 0; }
976
+ z->bra = z->c; /* ], line 175 */
977
+ switch(among_var) {
978
+ case 0: { z->lb = mlimit; return 0; }
979
+ case 1:
980
+ { int ret = r_R2(z);
981
+ if (ret == 0) { z->lb = mlimit; return 0; } /* call R2, line 177 */
982
+ if (ret < 0) return ret;
983
+ }
984
+ { int ret = slice_del(z); /* delete, line 177 */
985
+ if (ret < 0) return ret;
986
+ }
987
+ break;
988
+ case 2:
989
+ { int ret = slice_del(z); /* delete, line 185 */
990
+ if (ret < 0) return ret;
991
+ }
992
+ break;
993
+ case 3:
994
+ { int ret = slice_del(z); /* delete, line 190 */
995
+ if (ret < 0) return ret;
996
+ }
997
+ { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 191 */
998
+ z->ket = z->c; /* [, line 191 */
999
+ if (!(eq_s_b(z, 1, s_32))) { z->c = z->l - m_keep; goto lab0; }
1000
+ z->bra = z->c; /* ], line 191 */
1001
+ { int ret = slice_del(z); /* delete, line 191 */
1002
+ if (ret < 0) return ret;
1003
+ }
1004
+ lab0:
1005
+ ;
1006
+ }
1007
+ break;
1008
+ }
1009
+ z->lb = mlimit;
1010
+ }
1011
+ return 1;
1012
+ }
1013
+
1014
+ static int r_residual_suffix(struct SN_env * z) {
1015
+ int among_var;
1016
+ { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 199 */
1017
+ z->ket = z->c; /* [, line 199 */
1018
+ if (!(eq_s_b(z, 1, s_33))) { z->c = z->l - m_keep; goto lab0; }
1019
+ z->bra = z->c; /* ], line 199 */
1020
+ { int m_test = z->l - z->c; /* test, line 199 */
1021
+ if (out_grouping_b(z, g_keep_with_s, 97, 232, 0)) { z->c = z->l - m_keep; goto lab0; }
1022
+ z->c = z->l - m_test;
1023
+ }
1024
+ { int ret = slice_del(z); /* delete, line 199 */
1025
+ if (ret < 0) return ret;
1026
+ }
1027
+ lab0:
1028
+ ;
1029
+ }
1030
+ { int mlimit; /* setlimit, line 200 */
1031
+ int m1 = z->l - z->c; (void)m1;
1032
+ if (z->c < z->I[0]) return 0;
1033
+ z->c = z->I[0]; /* tomark, line 200 */
1034
+ mlimit = z->lb; z->lb = z->c;
1035
+ z->c = z->l - m1;
1036
+ z->ket = z->c; /* [, line 201 */
1037
+ among_var = find_among_b(z, a_7, 7); /* substring, line 201 */
1038
+ if (!(among_var)) { z->lb = mlimit; return 0; }
1039
+ z->bra = z->c; /* ], line 201 */
1040
+ switch(among_var) {
1041
+ case 0: { z->lb = mlimit; return 0; }
1042
+ case 1:
1043
+ { int ret = r_R2(z);
1044
+ if (ret == 0) { z->lb = mlimit; return 0; } /* call R2, line 202 */
1045
+ if (ret < 0) return ret;
1046
+ }
1047
+ { int m2 = z->l - z->c; (void)m2; /* or, line 202 */
1048
+ if (!(eq_s_b(z, 1, s_34))) goto lab2;
1049
+ goto lab1;
1050
+ lab2:
1051
+ z->c = z->l - m2;
1052
+ if (!(eq_s_b(z, 1, s_35))) { z->lb = mlimit; return 0; }
1053
+ }
1054
+ lab1:
1055
+ { int ret = slice_del(z); /* delete, line 202 */
1056
+ if (ret < 0) return ret;
1057
+ }
1058
+ break;
1059
+ case 2:
1060
+ { int ret = slice_from_s(z, 1, s_36); /* <-, line 204 */
1061
+ if (ret < 0) return ret;
1062
+ }
1063
+ break;
1064
+ case 3:
1065
+ { int ret = slice_del(z); /* delete, line 205 */
1066
+ if (ret < 0) return ret;
1067
+ }
1068
+ break;
1069
+ case 4:
1070
+ if (!(eq_s_b(z, 2, s_37))) { z->lb = mlimit; return 0; }
1071
+ { int ret = slice_del(z); /* delete, line 206 */
1072
+ if (ret < 0) return ret;
1073
+ }
1074
+ break;
1075
+ }
1076
+ z->lb = mlimit;
1077
+ }
1078
+ return 1;
1079
+ }
1080
+
1081
+ static int r_un_double(struct SN_env * z) {
1082
+ { int m_test = z->l - z->c; /* test, line 212 */
1083
+ if (z->c - 2 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((1069056 >> (z->p[z->c - 1] & 0x1f)) & 1)) return 0;
1084
+ if (!(find_among_b(z, a_8, 5))) return 0; /* among, line 212 */
1085
+ z->c = z->l - m_test;
1086
+ }
1087
+ z->ket = z->c; /* [, line 212 */
1088
+ if (z->c <= z->lb) return 0;
1089
+ z->c--; /* next, line 212 */
1090
+ z->bra = z->c; /* ], line 212 */
1091
+ { int ret = slice_del(z); /* delete, line 212 */
1092
+ if (ret < 0) return ret;
1093
+ }
1094
+ return 1;
1095
+ }
1096
+
1097
+ static int r_un_accent(struct SN_env * z) {
1098
+ { int i = 1;
1099
+ while(1) { /* atleast, line 216 */
1100
+ if (out_grouping_b(z, g_v, 97, 251, 0)) goto lab0;
1101
+ i--;
1102
+ continue;
1103
+ lab0:
1104
+ break;
1105
+ }
1106
+ if (i > 0) return 0;
1107
+ }
1108
+ z->ket = z->c; /* [, line 217 */
1109
+ { int m1 = z->l - z->c; (void)m1; /* or, line 217 */
1110
+ if (!(eq_s_b(z, 1, s_38))) goto lab2;
1111
+ goto lab1;
1112
+ lab2:
1113
+ z->c = z->l - m1;
1114
+ if (!(eq_s_b(z, 1, s_39))) return 0;
1115
+ }
1116
+ lab1:
1117
+ z->bra = z->c; /* ], line 217 */
1118
+ { int ret = slice_from_s(z, 1, s_40); /* <-, line 217 */
1119
+ if (ret < 0) return ret;
1120
+ }
1121
+ return 1;
1122
+ }
1123
+
1124
+ extern int french_ISO_8859_1_stem(struct SN_env * z) {
1125
+ { int c1 = z->c; /* do, line 223 */
1126
+ { int ret = r_prelude(z);
1127
+ if (ret == 0) goto lab0; /* call prelude, line 223 */
1128
+ if (ret < 0) return ret;
1129
+ }
1130
+ lab0:
1131
+ z->c = c1;
1132
+ }
1133
+ { int c2 = z->c; /* do, line 224 */
1134
+ { int ret = r_mark_regions(z);
1135
+ if (ret == 0) goto lab1; /* call mark_regions, line 224 */
1136
+ if (ret < 0) return ret;
1137
+ }
1138
+ lab1:
1139
+ z->c = c2;
1140
+ }
1141
+ z->lb = z->c; z->c = z->l; /* backwards, line 225 */
1142
+
1143
+ { int m3 = z->l - z->c; (void)m3; /* do, line 227 */
1144
+ { int m4 = z->l - z->c; (void)m4; /* or, line 237 */
1145
+ { int m5 = z->l - z->c; (void)m5; /* and, line 233 */
1146
+ { int m6 = z->l - z->c; (void)m6; /* or, line 229 */
1147
+ { int ret = r_standard_suffix(z);
1148
+ if (ret == 0) goto lab6; /* call standard_suffix, line 229 */
1149
+ if (ret < 0) return ret;
1150
+ }
1151
+ goto lab5;
1152
+ lab6:
1153
+ z->c = z->l - m6;
1154
+ { int ret = r_i_verb_suffix(z);
1155
+ if (ret == 0) goto lab7; /* call i_verb_suffix, line 230 */
1156
+ if (ret < 0) return ret;
1157
+ }
1158
+ goto lab5;
1159
+ lab7:
1160
+ z->c = z->l - m6;
1161
+ { int ret = r_verb_suffix(z);
1162
+ if (ret == 0) goto lab4; /* call verb_suffix, line 231 */
1163
+ if (ret < 0) return ret;
1164
+ }
1165
+ }
1166
+ lab5:
1167
+ z->c = z->l - m5;
1168
+ { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 234 */
1169
+ z->ket = z->c; /* [, line 234 */
1170
+ { int m7 = z->l - z->c; (void)m7; /* or, line 234 */
1171
+ if (!(eq_s_b(z, 1, s_41))) goto lab10;
1172
+ z->bra = z->c; /* ], line 234 */
1173
+ { int ret = slice_from_s(z, 1, s_42); /* <-, line 234 */
1174
+ if (ret < 0) return ret;
1175
+ }
1176
+ goto lab9;
1177
+ lab10:
1178
+ z->c = z->l - m7;
1179
+ if (!(eq_s_b(z, 1, s_43))) { z->c = z->l - m_keep; goto lab8; }
1180
+ z->bra = z->c; /* ], line 235 */
1181
+ { int ret = slice_from_s(z, 1, s_44); /* <-, line 235 */
1182
+ if (ret < 0) return ret;
1183
+ }
1184
+ }
1185
+ lab9:
1186
+ lab8:
1187
+ ;
1188
+ }
1189
+ }
1190
+ goto lab3;
1191
+ lab4:
1192
+ z->c = z->l - m4;
1193
+ { int ret = r_residual_suffix(z);
1194
+ if (ret == 0) goto lab2; /* call residual_suffix, line 238 */
1195
+ if (ret < 0) return ret;
1196
+ }
1197
+ }
1198
+ lab3:
1199
+ lab2:
1200
+ z->c = z->l - m3;
1201
+ }
1202
+ { int m8 = z->l - z->c; (void)m8; /* do, line 243 */
1203
+ { int ret = r_un_double(z);
1204
+ if (ret == 0) goto lab11; /* call un_double, line 243 */
1205
+ if (ret < 0) return ret;
1206
+ }
1207
+ lab11:
1208
+ z->c = z->l - m8;
1209
+ }
1210
+ { int m9 = z->l - z->c; (void)m9; /* do, line 244 */
1211
+ { int ret = r_un_accent(z);
1212
+ if (ret == 0) goto lab12; /* call un_accent, line 244 */
1213
+ if (ret < 0) return ret;
1214
+ }
1215
+ lab12:
1216
+ z->c = z->l - m9;
1217
+ }
1218
+ z->c = z->lb;
1219
+ { int c10 = z->c; /* do, line 246 */
1220
+ { int ret = r_postlude(z);
1221
+ if (ret == 0) goto lab13; /* call postlude, line 246 */
1222
+ if (ret < 0) return ret;
1223
+ }
1224
+ lab13:
1225
+ z->c = c10;
1226
+ }
1227
+ return 1;
1228
+ }
1229
+
1230
+ extern struct SN_env * french_ISO_8859_1_create_env(void) { return SN_create_env(0, 3, 0); }
1231
+
1232
+ extern void french_ISO_8859_1_close_env(struct SN_env * z) { SN_close_env(z, 0); }
1233
+