isomorfeus-ferret 0.12.4 → 0.12.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (123) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +612 -612
  3. data/README.md +80 -48
  4. data/ext/isomorfeus_ferret_ext/bm_hash.c +9 -6
  5. data/ext/isomorfeus_ferret_ext/bm_micro_string.c +4 -2
  6. data/ext/isomorfeus_ferret_ext/frb_store.c +34 -5
  7. data/ext/isomorfeus_ferret_ext/frt_posh.h +11 -19
  8. data/ext/isomorfeus_ferret_ext/frt_q_parser.c +1844 -1911
  9. data/ext/isomorfeus_ferret_ext/frt_q_phrase.c +7 -7
  10. data/ext/isomorfeus_ferret_ext/frt_scanner.c +1 -0
  11. data/ext/isomorfeus_ferret_ext/frt_scanner_mb.c +1 -0
  12. data/ext/isomorfeus_ferret_ext/frt_scanner_utf8.c +1 -0
  13. data/ext/isomorfeus_ferret_ext/frt_search.h +1 -1
  14. data/ext/isomorfeus_ferret_ext/libstemmer.c +14 -11
  15. data/ext/isomorfeus_ferret_ext/libstemmer.h +4 -9
  16. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_basque.c +1167 -0
  17. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_basque.h +6 -0
  18. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_catalan.c +1433 -0
  19. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_catalan.h +6 -0
  20. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_danish.c +120 -143
  21. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_danish.h +1 -2
  22. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_dutch.c +217 -237
  23. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_dutch.h +1 -1
  24. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_english.c +377 -432
  25. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_english.h +1 -1
  26. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_finnish.c +298 -342
  27. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_finnish.h +1 -2
  28. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_french.c +530 -524
  29. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_french.h +1 -1
  30. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_german.c +201 -214
  31. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_german.h +1 -1
  32. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_hungarian.c +1 -1
  33. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_indonesian.c +394 -0
  34. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_indonesian.h +6 -0
  35. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_irish.c +457 -0
  36. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_irish.h +6 -0
  37. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_italian.c +396 -439
  38. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_italian.h +1 -1
  39. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_norwegian.c +104 -128
  40. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_norwegian.h +1 -1
  41. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_porter.c +242 -273
  42. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_porter.h +1 -1
  43. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_portuguese.c +406 -461
  44. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_portuguese.h +1 -2
  45. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_spanish.c +405 -456
  46. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_spanish.h +1 -1
  47. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_swedish.c +108 -126
  48. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_swedish.h +1 -1
  49. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_hungarian.c +849 -0
  50. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_hungarian.h +6 -0
  51. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_romanian.c +373 -405
  52. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_romanian.h +1 -1
  53. data/ext/isomorfeus_ferret_ext/stem_KOI8_R_russian.c +288 -305
  54. data/ext/isomorfeus_ferret_ext/stem_KOI8_R_russian.h +1 -1
  55. data/ext/isomorfeus_ferret_ext/stem_UTF_8_arabic.c +1651 -0
  56. data/ext/isomorfeus_ferret_ext/stem_UTF_8_arabic.h +6 -0
  57. data/ext/isomorfeus_ferret_ext/stem_UTF_8_armenian.c +546 -0
  58. data/ext/isomorfeus_ferret_ext/stem_UTF_8_armenian.h +6 -0
  59. data/ext/isomorfeus_ferret_ext/stem_UTF_8_basque.c +1171 -0
  60. data/ext/isomorfeus_ferret_ext/stem_UTF_8_basque.h +6 -0
  61. data/ext/isomorfeus_ferret_ext/stem_UTF_8_catalan.c +1436 -0
  62. data/ext/isomorfeus_ferret_ext/stem_UTF_8_catalan.h +6 -0
  63. data/ext/isomorfeus_ferret_ext/stem_UTF_8_danish.c +121 -141
  64. data/ext/isomorfeus_ferret_ext/stem_UTF_8_danish.h +1 -1
  65. data/ext/isomorfeus_ferret_ext/stem_UTF_8_dutch.c +221 -241
  66. data/ext/isomorfeus_ferret_ext/stem_UTF_8_dutch.h +1 -1
  67. data/ext/isomorfeus_ferret_ext/stem_UTF_8_english.c +381 -431
  68. data/ext/isomorfeus_ferret_ext/stem_UTF_8_english.h +1 -1
  69. data/ext/isomorfeus_ferret_ext/stem_UTF_8_finnish.c +300 -345
  70. data/ext/isomorfeus_ferret_ext/stem_UTF_8_finnish.h +1 -1
  71. data/ext/isomorfeus_ferret_ext/stem_UTF_8_french.c +518 -511
  72. data/ext/isomorfeus_ferret_ext/stem_UTF_8_french.h +1 -1
  73. data/ext/isomorfeus_ferret_ext/stem_UTF_8_german.c +201 -209
  74. data/ext/isomorfeus_ferret_ext/stem_UTF_8_german.h +1 -1
  75. data/ext/isomorfeus_ferret_ext/stem_UTF_8_greek.c +3660 -0
  76. data/ext/isomorfeus_ferret_ext/stem_UTF_8_greek.h +6 -0
  77. data/ext/isomorfeus_ferret_ext/stem_UTF_8_hindi.c +309 -0
  78. data/ext/isomorfeus_ferret_ext/stem_UTF_8_hindi.h +6 -0
  79. data/ext/isomorfeus_ferret_ext/stem_UTF_8_hungarian.c +306 -671
  80. data/ext/isomorfeus_ferret_ext/stem_UTF_8_hungarian.h +1 -1
  81. data/ext/isomorfeus_ferret_ext/stem_UTF_8_indonesian.c +394 -0
  82. data/ext/isomorfeus_ferret_ext/stem_UTF_8_indonesian.h +6 -0
  83. data/ext/isomorfeus_ferret_ext/stem_UTF_8_irish.c +457 -0
  84. data/ext/isomorfeus_ferret_ext/stem_UTF_8_irish.h +6 -0
  85. data/ext/isomorfeus_ferret_ext/stem_UTF_8_italian.c +400 -442
  86. data/ext/isomorfeus_ferret_ext/stem_UTF_8_italian.h +1 -1
  87. data/ext/isomorfeus_ferret_ext/stem_UTF_8_lithuanian.c +824 -0
  88. data/ext/isomorfeus_ferret_ext/stem_UTF_8_lithuanian.h +6 -0
  89. data/ext/isomorfeus_ferret_ext/stem_UTF_8_nepali.c +408 -0
  90. data/ext/isomorfeus_ferret_ext/stem_UTF_8_nepali.h +6 -0
  91. data/ext/isomorfeus_ferret_ext/stem_UTF_8_norwegian.c +105 -127
  92. data/ext/isomorfeus_ferret_ext/stem_UTF_8_norwegian.h +1 -1
  93. data/ext/isomorfeus_ferret_ext/stem_UTF_8_porter.c +245 -276
  94. data/ext/isomorfeus_ferret_ext/stem_UTF_8_porter.h +1 -1
  95. data/ext/isomorfeus_ferret_ext/stem_UTF_8_portuguese.c +409 -464
  96. data/ext/isomorfeus_ferret_ext/stem_UTF_8_portuguese.h +1 -1
  97. data/ext/isomorfeus_ferret_ext/stem_UTF_8_romanian.c +376 -408
  98. data/ext/isomorfeus_ferret_ext/stem_UTF_8_romanian.h +1 -1
  99. data/ext/isomorfeus_ferret_ext/stem_UTF_8_russian.c +272 -287
  100. data/ext/isomorfeus_ferret_ext/stem_UTF_8_russian.h +1 -1
  101. data/ext/isomorfeus_ferret_ext/stem_UTF_8_serbian.c +6530 -0
  102. data/ext/isomorfeus_ferret_ext/stem_UTF_8_serbian.h +6 -0
  103. data/ext/isomorfeus_ferret_ext/stem_UTF_8_spanish.c +407 -458
  104. data/ext/isomorfeus_ferret_ext/stem_UTF_8_spanish.h +1 -1
  105. data/ext/isomorfeus_ferret_ext/stem_UTF_8_swedish.c +110 -125
  106. data/ext/isomorfeus_ferret_ext/stem_UTF_8_swedish.h +1 -1
  107. data/ext/isomorfeus_ferret_ext/stem_UTF_8_tamil.c +1865 -0
  108. data/ext/isomorfeus_ferret_ext/stem_UTF_8_tamil.h +6 -0
  109. data/ext/isomorfeus_ferret_ext/stem_UTF_8_turkish.c +698 -806
  110. data/ext/isomorfeus_ferret_ext/stem_UTF_8_turkish.h +1 -1
  111. data/ext/isomorfeus_ferret_ext/stem_UTF_8_yiddish.c +1220 -0
  112. data/ext/isomorfeus_ferret_ext/stem_UTF_8_yiddish.h +6 -0
  113. data/ext/isomorfeus_ferret_ext/stem_api.c +1 -9
  114. data/ext/isomorfeus_ferret_ext/stem_api.h +1 -3
  115. data/ext/isomorfeus_ferret_ext/stem_header.h +30 -26
  116. data/ext/isomorfeus_ferret_ext/stem_modules.h +113 -26
  117. data/ext/isomorfeus_ferret_ext/stem_modules.txt +18 -5
  118. data/ext/isomorfeus_ferret_ext/stem_utilities.c +167 -132
  119. data/ext/isomorfeus_ferret_ext/test.c +7 -1
  120. data/ext/isomorfeus_ferret_ext/test_search.c +0 -1
  121. data/lib/isomorfeus/ferret/version.rb +1 -1
  122. metadata +39 -4
  123. data/ext/isomorfeus_ferret_ext/q_parser.y +0 -1366
@@ -1,4 +1,4 @@
1
- /* This file was generated automatically by the Snowball to ANSI C compiler */
1
+ /* Generated by Snowball 2.2.0 - https://snowballstem.org/ */
2
2
 
3
3
  #include "stem_header.h"
4
4
 
@@ -23,9 +23,9 @@ static const symbol s_0_2[2] = { 0xC3, 0xB5 };
23
23
 
24
24
  static const struct among a_0[3] =
25
25
  {
26
- /* 0 */ { 0, 0, -1, 3, 0},
27
- /* 1 */ { 2, s_0_1, 0, 1, 0},
28
- /* 2 */ { 2, s_0_2, 0, 2, 0}
26
+ { 0, 0, -1, 3, 0},
27
+ { 2, s_0_1, 0, 1, 0},
28
+ { 2, s_0_2, 0, 2, 0}
29
29
  };
30
30
 
31
31
  static const symbol s_1_1[2] = { 'a', '~' };
@@ -33,9 +33,9 @@ static const symbol s_1_2[2] = { 'o', '~' };
33
33
 
34
34
  static const struct among a_1[3] =
35
35
  {
36
- /* 0 */ { 0, 0, -1, 3, 0},
37
- /* 1 */ { 2, s_1_1, 0, 1, 0},
38
- /* 2 */ { 2, s_1_2, 0, 2, 0}
36
+ { 0, 0, -1, 3, 0},
37
+ { 2, s_1_1, 0, 1, 0},
38
+ { 2, s_1_2, 0, 2, 0}
39
39
  };
40
40
 
41
41
  static const symbol s_2_0[2] = { 'i', 'c' };
@@ -45,10 +45,10 @@ static const symbol s_2_3[2] = { 'i', 'v' };
45
45
 
46
46
  static const struct among a_2[4] =
47
47
  {
48
- /* 0 */ { 2, s_2_0, -1, -1, 0},
49
- /* 1 */ { 2, s_2_1, -1, -1, 0},
50
- /* 2 */ { 2, s_2_2, -1, -1, 0},
51
- /* 3 */ { 2, s_2_3, -1, 1, 0}
48
+ { 2, s_2_0, -1, -1, 0},
49
+ { 2, s_2_1, -1, -1, 0},
50
+ { 2, s_2_2, -1, -1, 0},
51
+ { 2, s_2_3, -1, 1, 0}
52
52
  };
53
53
 
54
54
  static const symbol s_3_0[4] = { 'a', 'n', 't', 'e' };
@@ -57,9 +57,9 @@ static const symbol s_3_2[5] = { 0xC3, 0xAD, 'v', 'e', 'l' };
57
57
 
58
58
  static const struct among a_3[3] =
59
59
  {
60
- /* 0 */ { 4, s_3_0, -1, 1, 0},
61
- /* 1 */ { 4, s_3_1, -1, 1, 0},
62
- /* 2 */ { 5, s_3_2, -1, 1, 0}
60
+ { 4, s_3_0, -1, 1, 0},
61
+ { 4, s_3_1, -1, 1, 0},
62
+ { 5, s_3_2, -1, 1, 0}
63
63
  };
64
64
 
65
65
  static const symbol s_4_0[2] = { 'i', 'c' };
@@ -68,50 +68,50 @@ static const symbol s_4_2[2] = { 'i', 'v' };
68
68
 
69
69
  static const struct among a_4[3] =
70
70
  {
71
- /* 0 */ { 2, s_4_0, -1, 1, 0},
72
- /* 1 */ { 4, s_4_1, -1, 1, 0},
73
- /* 2 */ { 2, s_4_2, -1, 1, 0}
71
+ { 2, s_4_0, -1, 1, 0},
72
+ { 4, s_4_1, -1, 1, 0},
73
+ { 2, s_4_2, -1, 1, 0}
74
74
  };
75
75
 
76
76
  static const symbol s_5_0[3] = { 'i', 'c', 'a' };
77
77
  static const symbol s_5_1[6] = { 0xC3, 0xA2, 'n', 'c', 'i', 'a' };
78
78
  static const symbol s_5_2[6] = { 0xC3, 0xAA, 'n', 'c', 'i', 'a' };
79
- static const symbol s_5_3[3] = { 'i', 'r', 'a' };
80
- static const symbol s_5_4[5] = { 'a', 'd', 'o', 'r', 'a' };
81
- static const symbol s_5_5[3] = { 'o', 's', 'a' };
82
- static const symbol s_5_6[4] = { 'i', 's', 't', 'a' };
83
- static const symbol s_5_7[3] = { 'i', 'v', 'a' };
84
- static const symbol s_5_8[3] = { 'e', 'z', 'a' };
85
- static const symbol s_5_9[6] = { 'l', 'o', 'g', 0xC3, 0xAD, 'a' };
79
+ static const symbol s_5_3[5] = { 'l', 'o', 'g', 'i', 'a' };
80
+ static const symbol s_5_4[3] = { 'i', 'r', 'a' };
81
+ static const symbol s_5_5[5] = { 'a', 'd', 'o', 'r', 'a' };
82
+ static const symbol s_5_6[3] = { 'o', 's', 'a' };
83
+ static const symbol s_5_7[4] = { 'i', 's', 't', 'a' };
84
+ static const symbol s_5_8[3] = { 'i', 'v', 'a' };
85
+ static const symbol s_5_9[3] = { 'e', 'z', 'a' };
86
86
  static const symbol s_5_10[5] = { 'i', 'd', 'a', 'd', 'e' };
87
87
  static const symbol s_5_11[4] = { 'a', 'n', 't', 'e' };
88
88
  static const symbol s_5_12[5] = { 'm', 'e', 'n', 't', 'e' };
89
89
  static const symbol s_5_13[6] = { 'a', 'm', 'e', 'n', 't', 'e' };
90
90
  static const symbol s_5_14[5] = { 0xC3, 0xA1, 'v', 'e', 'l' };
91
91
  static const symbol s_5_15[5] = { 0xC3, 0xAD, 'v', 'e', 'l' };
92
- static const symbol s_5_16[6] = { 'u', 'c', 'i', 0xC3, 0xB3, 'n' };
93
- static const symbol s_5_17[3] = { 'i', 'c', 'o' };
94
- static const symbol s_5_18[4] = { 'i', 's', 'm', 'o' };
95
- static const symbol s_5_19[3] = { 'o', 's', 'o' };
96
- static const symbol s_5_20[6] = { 'a', 'm', 'e', 'n', 't', 'o' };
97
- static const symbol s_5_21[6] = { 'i', 'm', 'e', 'n', 't', 'o' };
98
- static const symbol s_5_22[3] = { 'i', 'v', 'o' };
99
- static const symbol s_5_23[6] = { 'a', 0xC3, 0xA7, 'a', '~', 'o' };
92
+ static const symbol s_5_16[3] = { 'i', 'c', 'o' };
93
+ static const symbol s_5_17[4] = { 'i', 's', 'm', 'o' };
94
+ static const symbol s_5_18[3] = { 'o', 's', 'o' };
95
+ static const symbol s_5_19[6] = { 'a', 'm', 'e', 'n', 't', 'o' };
96
+ static const symbol s_5_20[6] = { 'i', 'm', 'e', 'n', 't', 'o' };
97
+ static const symbol s_5_21[3] = { 'i', 'v', 'o' };
98
+ static const symbol s_5_22[6] = { 'a', 0xC3, 0xA7, 'a', '~', 'o' };
99
+ static const symbol s_5_23[6] = { 'u', 0xC3, 0xA7, 'a', '~', 'o' };
100
100
  static const symbol s_5_24[4] = { 'a', 'd', 'o', 'r' };
101
101
  static const symbol s_5_25[4] = { 'i', 'c', 'a', 's' };
102
102
  static const symbol s_5_26[7] = { 0xC3, 0xAA, 'n', 'c', 'i', 'a', 's' };
103
- static const symbol s_5_27[4] = { 'i', 'r', 'a', 's' };
104
- static const symbol s_5_28[6] = { 'a', 'd', 'o', 'r', 'a', 's' };
105
- static const symbol s_5_29[4] = { 'o', 's', 'a', 's' };
106
- static const symbol s_5_30[5] = { 'i', 's', 't', 'a', 's' };
107
- static const symbol s_5_31[4] = { 'i', 'v', 'a', 's' };
108
- static const symbol s_5_32[4] = { 'e', 'z', 'a', 's' };
109
- static const symbol s_5_33[7] = { 'l', 'o', 'g', 0xC3, 0xAD, 'a', 's' };
103
+ static const symbol s_5_27[6] = { 'l', 'o', 'g', 'i', 'a', 's' };
104
+ static const symbol s_5_28[4] = { 'i', 'r', 'a', 's' };
105
+ static const symbol s_5_29[6] = { 'a', 'd', 'o', 'r', 'a', 's' };
106
+ static const symbol s_5_30[4] = { 'o', 's', 'a', 's' };
107
+ static const symbol s_5_31[5] = { 'i', 's', 't', 'a', 's' };
108
+ static const symbol s_5_32[4] = { 'i', 'v', 'a', 's' };
109
+ static const symbol s_5_33[4] = { 'e', 'z', 'a', 's' };
110
110
  static const symbol s_5_34[6] = { 'i', 'd', 'a', 'd', 'e', 's' };
111
- static const symbol s_5_35[7] = { 'u', 'c', 'i', 'o', 'n', 'e', 's' };
112
- static const symbol s_5_36[6] = { 'a', 'd', 'o', 'r', 'e', 's' };
113
- static const symbol s_5_37[5] = { 'a', 'n', 't', 'e', 's' };
114
- static const symbol s_5_38[7] = { 'a', 0xC3, 0xA7, 'o', '~', 'e', 's' };
111
+ static const symbol s_5_35[6] = { 'a', 'd', 'o', 'r', 'e', 's' };
112
+ static const symbol s_5_36[5] = { 'a', 'n', 't', 'e', 's' };
113
+ static const symbol s_5_37[7] = { 'a', 0xC3, 0xA7, 'o', '~', 'e', 's' };
114
+ static const symbol s_5_38[7] = { 'u', 0xC3, 0xA7, 'o', '~', 'e', 's' };
115
115
  static const symbol s_5_39[4] = { 'i', 'c', 'o', 's' };
116
116
  static const symbol s_5_40[5] = { 'i', 's', 'm', 'o', 's' };
117
117
  static const symbol s_5_41[4] = { 'o', 's', 'o', 's' };
@@ -121,51 +121,51 @@ static const symbol s_5_44[4] = { 'i', 'v', 'o', 's' };
121
121
 
122
122
  static const struct among a_5[45] =
123
123
  {
124
- /* 0 */ { 3, s_5_0, -1, 1, 0},
125
- /* 1 */ { 6, s_5_1, -1, 1, 0},
126
- /* 2 */ { 6, s_5_2, -1, 4, 0},
127
- /* 3 */ { 3, s_5_3, -1, 9, 0},
128
- /* 4 */ { 5, s_5_4, -1, 1, 0},
129
- /* 5 */ { 3, s_5_5, -1, 1, 0},
130
- /* 6 */ { 4, s_5_6, -1, 1, 0},
131
- /* 7 */ { 3, s_5_7, -1, 8, 0},
132
- /* 8 */ { 3, s_5_8, -1, 1, 0},
133
- /* 9 */ { 6, s_5_9, -1, 2, 0},
134
- /* 10 */ { 5, s_5_10, -1, 7, 0},
135
- /* 11 */ { 4, s_5_11, -1, 1, 0},
136
- /* 12 */ { 5, s_5_12, -1, 6, 0},
137
- /* 13 */ { 6, s_5_13, 12, 5, 0},
138
- /* 14 */ { 5, s_5_14, -1, 1, 0},
139
- /* 15 */ { 5, s_5_15, -1, 1, 0},
140
- /* 16 */ { 6, s_5_16, -1, 3, 0},
141
- /* 17 */ { 3, s_5_17, -1, 1, 0},
142
- /* 18 */ { 4, s_5_18, -1, 1, 0},
143
- /* 19 */ { 3, s_5_19, -1, 1, 0},
144
- /* 20 */ { 6, s_5_20, -1, 1, 0},
145
- /* 21 */ { 6, s_5_21, -1, 1, 0},
146
- /* 22 */ { 3, s_5_22, -1, 8, 0},
147
- /* 23 */ { 6, s_5_23, -1, 1, 0},
148
- /* 24 */ { 4, s_5_24, -1, 1, 0},
149
- /* 25 */ { 4, s_5_25, -1, 1, 0},
150
- /* 26 */ { 7, s_5_26, -1, 4, 0},
151
- /* 27 */ { 4, s_5_27, -1, 9, 0},
152
- /* 28 */ { 6, s_5_28, -1, 1, 0},
153
- /* 29 */ { 4, s_5_29, -1, 1, 0},
154
- /* 30 */ { 5, s_5_30, -1, 1, 0},
155
- /* 31 */ { 4, s_5_31, -1, 8, 0},
156
- /* 32 */ { 4, s_5_32, -1, 1, 0},
157
- /* 33 */ { 7, s_5_33, -1, 2, 0},
158
- /* 34 */ { 6, s_5_34, -1, 7, 0},
159
- /* 35 */ { 7, s_5_35, -1, 3, 0},
160
- /* 36 */ { 6, s_5_36, -1, 1, 0},
161
- /* 37 */ { 5, s_5_37, -1, 1, 0},
162
- /* 38 */ { 7, s_5_38, -1, 1, 0},
163
- /* 39 */ { 4, s_5_39, -1, 1, 0},
164
- /* 40 */ { 5, s_5_40, -1, 1, 0},
165
- /* 41 */ { 4, s_5_41, -1, 1, 0},
166
- /* 42 */ { 7, s_5_42, -1, 1, 0},
167
- /* 43 */ { 7, s_5_43, -1, 1, 0},
168
- /* 44 */ { 4, s_5_44, -1, 8, 0}
124
+ { 3, s_5_0, -1, 1, 0},
125
+ { 6, s_5_1, -1, 1, 0},
126
+ { 6, s_5_2, -1, 4, 0},
127
+ { 5, s_5_3, -1, 2, 0},
128
+ { 3, s_5_4, -1, 9, 0},
129
+ { 5, s_5_5, -1, 1, 0},
130
+ { 3, s_5_6, -1, 1, 0},
131
+ { 4, s_5_7, -1, 1, 0},
132
+ { 3, s_5_8, -1, 8, 0},
133
+ { 3, s_5_9, -1, 1, 0},
134
+ { 5, s_5_10, -1, 7, 0},
135
+ { 4, s_5_11, -1, 1, 0},
136
+ { 5, s_5_12, -1, 6, 0},
137
+ { 6, s_5_13, 12, 5, 0},
138
+ { 5, s_5_14, -1, 1, 0},
139
+ { 5, s_5_15, -1, 1, 0},
140
+ { 3, s_5_16, -1, 1, 0},
141
+ { 4, s_5_17, -1, 1, 0},
142
+ { 3, s_5_18, -1, 1, 0},
143
+ { 6, s_5_19, -1, 1, 0},
144
+ { 6, s_5_20, -1, 1, 0},
145
+ { 3, s_5_21, -1, 8, 0},
146
+ { 6, s_5_22, -1, 1, 0},
147
+ { 6, s_5_23, -1, 3, 0},
148
+ { 4, s_5_24, -1, 1, 0},
149
+ { 4, s_5_25, -1, 1, 0},
150
+ { 7, s_5_26, -1, 4, 0},
151
+ { 6, s_5_27, -1, 2, 0},
152
+ { 4, s_5_28, -1, 9, 0},
153
+ { 6, s_5_29, -1, 1, 0},
154
+ { 4, s_5_30, -1, 1, 0},
155
+ { 5, s_5_31, -1, 1, 0},
156
+ { 4, s_5_32, -1, 8, 0},
157
+ { 4, s_5_33, -1, 1, 0},
158
+ { 6, s_5_34, -1, 7, 0},
159
+ { 6, s_5_35, -1, 1, 0},
160
+ { 5, s_5_36, -1, 1, 0},
161
+ { 7, s_5_37, -1, 1, 0},
162
+ { 7, s_5_38, -1, 3, 0},
163
+ { 4, s_5_39, -1, 1, 0},
164
+ { 5, s_5_40, -1, 1, 0},
165
+ { 4, s_5_41, -1, 1, 0},
166
+ { 7, s_5_42, -1, 1, 0},
167
+ { 7, s_5_43, -1, 1, 0},
168
+ { 4, s_5_44, -1, 8, 0}
169
169
  };
170
170
 
171
171
  static const symbol s_6_0[3] = { 'a', 'd', 'a' };
@@ -291,126 +291,126 @@ static const symbol s_6_119[4] = { 'i', 'r', 0xC3, 0xA1 };
291
291
 
292
292
  static const struct among a_6[120] =
293
293
  {
294
- /* 0 */ { 3, s_6_0, -1, 1, 0},
295
- /* 1 */ { 3, s_6_1, -1, 1, 0},
296
- /* 2 */ { 2, s_6_2, -1, 1, 0},
297
- /* 3 */ { 4, s_6_3, 2, 1, 0},
298
- /* 4 */ { 4, s_6_4, 2, 1, 0},
299
- /* 5 */ { 4, s_6_5, 2, 1, 0},
300
- /* 6 */ { 3, s_6_6, -1, 1, 0},
301
- /* 7 */ { 3, s_6_7, -1, 1, 0},
302
- /* 8 */ { 3, s_6_8, -1, 1, 0},
303
- /* 9 */ { 3, s_6_9, -1, 1, 0},
304
- /* 10 */ { 4, s_6_10, -1, 1, 0},
305
- /* 11 */ { 4, s_6_11, -1, 1, 0},
306
- /* 12 */ { 4, s_6_12, -1, 1, 0},
307
- /* 13 */ { 4, s_6_13, -1, 1, 0},
308
- /* 14 */ { 4, s_6_14, -1, 1, 0},
309
- /* 15 */ { 4, s_6_15, -1, 1, 0},
310
- /* 16 */ { 2, s_6_16, -1, 1, 0},
311
- /* 17 */ { 4, s_6_17, 16, 1, 0},
312
- /* 18 */ { 4, s_6_18, 16, 1, 0},
313
- /* 19 */ { 4, s_6_19, 16, 1, 0},
314
- /* 20 */ { 2, s_6_20, -1, 1, 0},
315
- /* 21 */ { 3, s_6_21, 20, 1, 0},
316
- /* 22 */ { 5, s_6_22, 21, 1, 0},
317
- /* 23 */ { 5, s_6_23, 21, 1, 0},
318
- /* 24 */ { 5, s_6_24, 21, 1, 0},
319
- /* 25 */ { 4, s_6_25, 20, 1, 0},
320
- /* 26 */ { 4, s_6_26, 20, 1, 0},
321
- /* 27 */ { 4, s_6_27, 20, 1, 0},
322
- /* 28 */ { 4, s_6_28, 20, 1, 0},
323
- /* 29 */ { 2, s_6_29, -1, 1, 0},
324
- /* 30 */ { 4, s_6_30, 29, 1, 0},
325
- /* 31 */ { 4, s_6_31, 29, 1, 0},
326
- /* 32 */ { 4, s_6_32, 29, 1, 0},
327
- /* 33 */ { 5, s_6_33, 29, 1, 0},
328
- /* 34 */ { 5, s_6_34, 29, 1, 0},
329
- /* 35 */ { 5, s_6_35, 29, 1, 0},
330
- /* 36 */ { 3, s_6_36, -1, 1, 0},
331
- /* 37 */ { 3, s_6_37, -1, 1, 0},
332
- /* 38 */ { 4, s_6_38, -1, 1, 0},
333
- /* 39 */ { 4, s_6_39, -1, 1, 0},
334
- /* 40 */ { 4, s_6_40, -1, 1, 0},
335
- /* 41 */ { 5, s_6_41, -1, 1, 0},
336
- /* 42 */ { 5, s_6_42, -1, 1, 0},
337
- /* 43 */ { 5, s_6_43, -1, 1, 0},
338
- /* 44 */ { 2, s_6_44, -1, 1, 0},
339
- /* 45 */ { 2, s_6_45, -1, 1, 0},
340
- /* 46 */ { 2, s_6_46, -1, 1, 0},
341
- /* 47 */ { 2, s_6_47, -1, 1, 0},
342
- /* 48 */ { 4, s_6_48, 47, 1, 0},
343
- /* 49 */ { 4, s_6_49, 47, 1, 0},
344
- /* 50 */ { 3, s_6_50, 47, 1, 0},
345
- /* 51 */ { 5, s_6_51, 50, 1, 0},
346
- /* 52 */ { 5, s_6_52, 50, 1, 0},
347
- /* 53 */ { 5, s_6_53, 50, 1, 0},
348
- /* 54 */ { 4, s_6_54, 47, 1, 0},
349
- /* 55 */ { 4, s_6_55, 47, 1, 0},
350
- /* 56 */ { 4, s_6_56, 47, 1, 0},
351
- /* 57 */ { 4, s_6_57, 47, 1, 0},
352
- /* 58 */ { 2, s_6_58, -1, 1, 0},
353
- /* 59 */ { 5, s_6_59, 58, 1, 0},
354
- /* 60 */ { 5, s_6_60, 58, 1, 0},
355
- /* 61 */ { 5, s_6_61, 58, 1, 0},
356
- /* 62 */ { 4, s_6_62, 58, 1, 0},
357
- /* 63 */ { 4, s_6_63, 58, 1, 0},
358
- /* 64 */ { 4, s_6_64, 58, 1, 0},
359
- /* 65 */ { 5, s_6_65, 58, 1, 0},
360
- /* 66 */ { 5, s_6_66, 58, 1, 0},
361
- /* 67 */ { 5, s_6_67, 58, 1, 0},
362
- /* 68 */ { 5, s_6_68, 58, 1, 0},
363
- /* 69 */ { 5, s_6_69, 58, 1, 0},
364
- /* 70 */ { 5, s_6_70, 58, 1, 0},
365
- /* 71 */ { 2, s_6_71, -1, 1, 0},
366
- /* 72 */ { 3, s_6_72, 71, 1, 0},
367
- /* 73 */ { 3, s_6_73, 71, 1, 0},
368
- /* 74 */ { 5, s_6_74, 73, 1, 0},
369
- /* 75 */ { 5, s_6_75, 73, 1, 0},
370
- /* 76 */ { 5, s_6_76, 73, 1, 0},
371
- /* 77 */ { 6, s_6_77, 73, 1, 0},
372
- /* 78 */ { 6, s_6_78, 73, 1, 0},
373
- /* 79 */ { 6, s_6_79, 73, 1, 0},
374
- /* 80 */ { 7, s_6_80, 73, 1, 0},
375
- /* 81 */ { 7, s_6_81, 73, 1, 0},
376
- /* 82 */ { 7, s_6_82, 73, 1, 0},
377
- /* 83 */ { 6, s_6_83, 73, 1, 0},
378
- /* 84 */ { 5, s_6_84, 73, 1, 0},
379
- /* 85 */ { 7, s_6_85, 84, 1, 0},
380
- /* 86 */ { 7, s_6_86, 84, 1, 0},
381
- /* 87 */ { 7, s_6_87, 84, 1, 0},
382
- /* 88 */ { 4, s_6_88, -1, 1, 0},
383
- /* 89 */ { 4, s_6_89, -1, 1, 0},
384
- /* 90 */ { 4, s_6_90, -1, 1, 0},
385
- /* 91 */ { 7, s_6_91, 90, 1, 0},
386
- /* 92 */ { 7, s_6_92, 90, 1, 0},
387
- /* 93 */ { 7, s_6_93, 90, 1, 0},
388
- /* 94 */ { 7, s_6_94, 90, 1, 0},
389
- /* 95 */ { 6, s_6_95, 90, 1, 0},
390
- /* 96 */ { 8, s_6_96, 95, 1, 0},
391
- /* 97 */ { 8, s_6_97, 95, 1, 0},
392
- /* 98 */ { 8, s_6_98, 95, 1, 0},
393
- /* 99 */ { 4, s_6_99, -1, 1, 0},
394
- /*100 */ { 6, s_6_100, 99, 1, 0},
395
- /*101 */ { 6, s_6_101, 99, 1, 0},
396
- /*102 */ { 6, s_6_102, 99, 1, 0},
397
- /*103 */ { 8, s_6_103, 99, 1, 0},
398
- /*104 */ { 8, s_6_104, 99, 1, 0},
399
- /*105 */ { 8, s_6_105, 99, 1, 0},
400
- /*106 */ { 4, s_6_106, -1, 1, 0},
401
- /*107 */ { 5, s_6_107, -1, 1, 0},
402
- /*108 */ { 5, s_6_108, -1, 1, 0},
403
- /*109 */ { 5, s_6_109, -1, 1, 0},
404
- /*110 */ { 5, s_6_110, -1, 1, 0},
405
- /*111 */ { 5, s_6_111, -1, 1, 0},
406
- /*112 */ { 5, s_6_112, -1, 1, 0},
407
- /*113 */ { 5, s_6_113, -1, 1, 0},
408
- /*114 */ { 2, s_6_114, -1, 1, 0},
409
- /*115 */ { 2, s_6_115, -1, 1, 0},
410
- /*116 */ { 2, s_6_116, -1, 1, 0},
411
- /*117 */ { 4, s_6_117, -1, 1, 0},
412
- /*118 */ { 4, s_6_118, -1, 1, 0},
413
- /*119 */ { 4, s_6_119, -1, 1, 0}
294
+ { 3, s_6_0, -1, 1, 0},
295
+ { 3, s_6_1, -1, 1, 0},
296
+ { 2, s_6_2, -1, 1, 0},
297
+ { 4, s_6_3, 2, 1, 0},
298
+ { 4, s_6_4, 2, 1, 0},
299
+ { 4, s_6_5, 2, 1, 0},
300
+ { 3, s_6_6, -1, 1, 0},
301
+ { 3, s_6_7, -1, 1, 0},
302
+ { 3, s_6_8, -1, 1, 0},
303
+ { 3, s_6_9, -1, 1, 0},
304
+ { 4, s_6_10, -1, 1, 0},
305
+ { 4, s_6_11, -1, 1, 0},
306
+ { 4, s_6_12, -1, 1, 0},
307
+ { 4, s_6_13, -1, 1, 0},
308
+ { 4, s_6_14, -1, 1, 0},
309
+ { 4, s_6_15, -1, 1, 0},
310
+ { 2, s_6_16, -1, 1, 0},
311
+ { 4, s_6_17, 16, 1, 0},
312
+ { 4, s_6_18, 16, 1, 0},
313
+ { 4, s_6_19, 16, 1, 0},
314
+ { 2, s_6_20, -1, 1, 0},
315
+ { 3, s_6_21, 20, 1, 0},
316
+ { 5, s_6_22, 21, 1, 0},
317
+ { 5, s_6_23, 21, 1, 0},
318
+ { 5, s_6_24, 21, 1, 0},
319
+ { 4, s_6_25, 20, 1, 0},
320
+ { 4, s_6_26, 20, 1, 0},
321
+ { 4, s_6_27, 20, 1, 0},
322
+ { 4, s_6_28, 20, 1, 0},
323
+ { 2, s_6_29, -1, 1, 0},
324
+ { 4, s_6_30, 29, 1, 0},
325
+ { 4, s_6_31, 29, 1, 0},
326
+ { 4, s_6_32, 29, 1, 0},
327
+ { 5, s_6_33, 29, 1, 0},
328
+ { 5, s_6_34, 29, 1, 0},
329
+ { 5, s_6_35, 29, 1, 0},
330
+ { 3, s_6_36, -1, 1, 0},
331
+ { 3, s_6_37, -1, 1, 0},
332
+ { 4, s_6_38, -1, 1, 0},
333
+ { 4, s_6_39, -1, 1, 0},
334
+ { 4, s_6_40, -1, 1, 0},
335
+ { 5, s_6_41, -1, 1, 0},
336
+ { 5, s_6_42, -1, 1, 0},
337
+ { 5, s_6_43, -1, 1, 0},
338
+ { 2, s_6_44, -1, 1, 0},
339
+ { 2, s_6_45, -1, 1, 0},
340
+ { 2, s_6_46, -1, 1, 0},
341
+ { 2, s_6_47, -1, 1, 0},
342
+ { 4, s_6_48, 47, 1, 0},
343
+ { 4, s_6_49, 47, 1, 0},
344
+ { 3, s_6_50, 47, 1, 0},
345
+ { 5, s_6_51, 50, 1, 0},
346
+ { 5, s_6_52, 50, 1, 0},
347
+ { 5, s_6_53, 50, 1, 0},
348
+ { 4, s_6_54, 47, 1, 0},
349
+ { 4, s_6_55, 47, 1, 0},
350
+ { 4, s_6_56, 47, 1, 0},
351
+ { 4, s_6_57, 47, 1, 0},
352
+ { 2, s_6_58, -1, 1, 0},
353
+ { 5, s_6_59, 58, 1, 0},
354
+ { 5, s_6_60, 58, 1, 0},
355
+ { 5, s_6_61, 58, 1, 0},
356
+ { 4, s_6_62, 58, 1, 0},
357
+ { 4, s_6_63, 58, 1, 0},
358
+ { 4, s_6_64, 58, 1, 0},
359
+ { 5, s_6_65, 58, 1, 0},
360
+ { 5, s_6_66, 58, 1, 0},
361
+ { 5, s_6_67, 58, 1, 0},
362
+ { 5, s_6_68, 58, 1, 0},
363
+ { 5, s_6_69, 58, 1, 0},
364
+ { 5, s_6_70, 58, 1, 0},
365
+ { 2, s_6_71, -1, 1, 0},
366
+ { 3, s_6_72, 71, 1, 0},
367
+ { 3, s_6_73, 71, 1, 0},
368
+ { 5, s_6_74, 73, 1, 0},
369
+ { 5, s_6_75, 73, 1, 0},
370
+ { 5, s_6_76, 73, 1, 0},
371
+ { 6, s_6_77, 73, 1, 0},
372
+ { 6, s_6_78, 73, 1, 0},
373
+ { 6, s_6_79, 73, 1, 0},
374
+ { 7, s_6_80, 73, 1, 0},
375
+ { 7, s_6_81, 73, 1, 0},
376
+ { 7, s_6_82, 73, 1, 0},
377
+ { 6, s_6_83, 73, 1, 0},
378
+ { 5, s_6_84, 73, 1, 0},
379
+ { 7, s_6_85, 84, 1, 0},
380
+ { 7, s_6_86, 84, 1, 0},
381
+ { 7, s_6_87, 84, 1, 0},
382
+ { 4, s_6_88, -1, 1, 0},
383
+ { 4, s_6_89, -1, 1, 0},
384
+ { 4, s_6_90, -1, 1, 0},
385
+ { 7, s_6_91, 90, 1, 0},
386
+ { 7, s_6_92, 90, 1, 0},
387
+ { 7, s_6_93, 90, 1, 0},
388
+ { 7, s_6_94, 90, 1, 0},
389
+ { 6, s_6_95, 90, 1, 0},
390
+ { 8, s_6_96, 95, 1, 0},
391
+ { 8, s_6_97, 95, 1, 0},
392
+ { 8, s_6_98, 95, 1, 0},
393
+ { 4, s_6_99, -1, 1, 0},
394
+ { 6, s_6_100, 99, 1, 0},
395
+ { 6, s_6_101, 99, 1, 0},
396
+ { 6, s_6_102, 99, 1, 0},
397
+ { 8, s_6_103, 99, 1, 0},
398
+ { 8, s_6_104, 99, 1, 0},
399
+ { 8, s_6_105, 99, 1, 0},
400
+ { 4, s_6_106, -1, 1, 0},
401
+ { 5, s_6_107, -1, 1, 0},
402
+ { 5, s_6_108, -1, 1, 0},
403
+ { 5, s_6_109, -1, 1, 0},
404
+ { 5, s_6_110, -1, 1, 0},
405
+ { 5, s_6_111, -1, 1, 0},
406
+ { 5, s_6_112, -1, 1, 0},
407
+ { 5, s_6_113, -1, 1, 0},
408
+ { 2, s_6_114, -1, 1, 0},
409
+ { 2, s_6_115, -1, 1, 0},
410
+ { 2, s_6_116, -1, 1, 0},
411
+ { 4, s_6_117, -1, 1, 0},
412
+ { 4, s_6_118, -1, 1, 0},
413
+ { 4, s_6_119, -1, 1, 0}
414
414
  };
415
415
 
416
416
  static const symbol s_7_0[1] = { 'a' };
@@ -423,13 +423,13 @@ static const symbol s_7_6[2] = { 0xC3, 0xB3 };
423
423
 
424
424
  static const struct among a_7[7] =
425
425
  {
426
- /* 0 */ { 1, s_7_0, -1, 1, 0},
427
- /* 1 */ { 1, s_7_1, -1, 1, 0},
428
- /* 2 */ { 1, s_7_2, -1, 1, 0},
429
- /* 3 */ { 2, s_7_3, -1, 1, 0},
430
- /* 4 */ { 2, s_7_4, -1, 1, 0},
431
- /* 5 */ { 2, s_7_5, -1, 1, 0},
432
- /* 6 */ { 2, s_7_6, -1, 1, 0}
426
+ { 1, s_7_0, -1, 1, 0},
427
+ { 1, s_7_1, -1, 1, 0},
428
+ { 1, s_7_2, -1, 1, 0},
429
+ { 2, s_7_3, -1, 1, 0},
430
+ { 2, s_7_4, -1, 1, 0},
431
+ { 2, s_7_5, -1, 1, 0},
432
+ { 2, s_7_6, -1, 1, 0}
433
433
  };
434
434
 
435
435
  static const symbol s_8_0[1] = { 'e' };
@@ -439,10 +439,10 @@ static const symbol s_8_3[2] = { 0xC3, 0xAA };
439
439
 
440
440
  static const struct among a_8[4] =
441
441
  {
442
- /* 0 */ { 1, s_8_0, -1, 1, 0},
443
- /* 1 */ { 2, s_8_1, -1, 2, 0},
444
- /* 2 */ { 2, s_8_2, -1, 1, 0},
445
- /* 3 */ { 2, s_8_3, -1, 1, 0}
442
+ { 1, s_8_0, -1, 1, 0},
443
+ { 2, s_8_1, -1, 2, 0},
444
+ { 2, s_8_2, -1, 1, 0},
445
+ { 2, s_8_3, -1, 1, 0}
446
446
  };
447
447
 
448
448
  static const unsigned char g_v[] = { 17, 65, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 19, 12, 2 };
@@ -456,41 +456,33 @@ static const symbol s_5[] = { 'u' };
456
456
  static const symbol s_6[] = { 'e', 'n', 't', 'e' };
457
457
  static const symbol s_7[] = { 'a', 't' };
458
458
  static const symbol s_8[] = { 'a', 't' };
459
- static const symbol s_9[] = { 'e' };
460
- static const symbol s_10[] = { 'i', 'r' };
461
- static const symbol s_11[] = { 'u' };
462
- static const symbol s_12[] = { 'g' };
463
- static const symbol s_13[] = { 'i' };
464
- static const symbol s_14[] = { 'c' };
465
- static const symbol s_15[] = { 'c' };
466
- static const symbol s_16[] = { 'i' };
467
- static const symbol s_17[] = { 'c' };
459
+ static const symbol s_9[] = { 'i', 'r' };
460
+ static const symbol s_10[] = { 'c' };
468
461
 
469
462
  static int r_prelude(struct SN_env * z) {
470
463
  int among_var;
471
- while(1) { /* repeat, line 36 */
464
+ while(1) {
472
465
  int c1 = z->c;
473
- z->bra = z->c; /* [, line 37 */
466
+ z->bra = z->c;
474
467
  if (z->c + 1 >= z->l || (z->p[z->c + 1] != 163 && z->p[z->c + 1] != 181)) among_var = 3; else
475
- among_var = find_among(z, a_0, 3); /* substring, line 37 */
468
+ among_var = find_among(z, a_0, 3);
476
469
  if (!(among_var)) goto lab0;
477
- z->ket = z->c; /* ], line 37 */
478
- switch(among_var) {
479
- case 0: goto lab0;
470
+ z->ket = z->c;
471
+ switch (among_var) {
480
472
  case 1:
481
- { int ret = slice_from_s(z, 2, s_0); /* <-, line 38 */
473
+ { int ret = slice_from_s(z, 2, s_0);
482
474
  if (ret < 0) return ret;
483
475
  }
484
476
  break;
485
477
  case 2:
486
- { int ret = slice_from_s(z, 2, s_1); /* <-, line 39 */
478
+ { int ret = slice_from_s(z, 2, s_1);
487
479
  if (ret < 0) return ret;
488
480
  }
489
481
  break;
490
482
  case 3:
491
- { int ret = skip_utf8(z->p, z->c, 0, z->l, 1);
483
+ { int ret = skip_utf8(z->p, z->c, z->l, 1);
492
484
  if (ret < 0) goto lab0;
493
- z->c = ret; /* next, line 40 */
485
+ z->c = ret;
494
486
  }
495
487
  break;
496
488
  }
@@ -503,15 +495,15 @@ static int r_prelude(struct SN_env * z) {
503
495
  }
504
496
 
505
497
  static int r_mark_regions(struct SN_env * z) {
506
- z->I[0] = z->l;
507
- z->I[1] = z->l;
508
498
  z->I[2] = z->l;
509
- { int c1 = z->c; /* do, line 50 */
510
- { int c2 = z->c; /* or, line 52 */
499
+ z->I[1] = z->l;
500
+ z->I[0] = z->l;
501
+ { int c1 = z->c;
502
+ { int c2 = z->c;
511
503
  if (in_grouping_U(z, g_v, 97, 250, 0)) goto lab2;
512
- { int c3 = z->c; /* or, line 51 */
504
+ { int c3 = z->c;
513
505
  if (out_grouping_U(z, g_v, 97, 250, 0)) goto lab4;
514
- { /* gopast */ /* grouping v, line 51 */
506
+ {
515
507
  int ret = out_grouping_U(z, g_v, 97, 250, 1);
516
508
  if (ret < 0) goto lab4;
517
509
  z->c += ret;
@@ -520,7 +512,7 @@ static int r_mark_regions(struct SN_env * z) {
520
512
  lab4:
521
513
  z->c = c3;
522
514
  if (in_grouping_U(z, g_v, 97, 250, 0)) goto lab2;
523
- { /* gopast */ /* non v, line 51 */
515
+ {
524
516
  int ret = in_grouping_U(z, g_v, 97, 250, 1);
525
517
  if (ret < 0) goto lab2;
526
518
  z->c += ret;
@@ -531,9 +523,9 @@ static int r_mark_regions(struct SN_env * z) {
531
523
  lab2:
532
524
  z->c = c2;
533
525
  if (out_grouping_U(z, g_v, 97, 250, 0)) goto lab0;
534
- { int c4 = z->c; /* or, line 53 */
526
+ { int c4 = z->c;
535
527
  if (out_grouping_U(z, g_v, 97, 250, 0)) goto lab6;
536
- { /* gopast */ /* grouping v, line 53 */
528
+ {
537
529
  int ret = out_grouping_U(z, g_v, 97, 250, 1);
538
530
  if (ret < 0) goto lab6;
539
531
  z->c += ret;
@@ -542,42 +534,42 @@ static int r_mark_regions(struct SN_env * z) {
542
534
  lab6:
543
535
  z->c = c4;
544
536
  if (in_grouping_U(z, g_v, 97, 250, 0)) goto lab0;
545
- { int ret = skip_utf8(z->p, z->c, 0, z->l, 1);
537
+ { int ret = skip_utf8(z->p, z->c, z->l, 1);
546
538
  if (ret < 0) goto lab0;
547
- z->c = ret; /* next, line 53 */
539
+ z->c = ret;
548
540
  }
549
541
  }
550
542
  lab5:
551
543
  ;
552
544
  }
553
545
  lab1:
554
- z->I[0] = z->c; /* setmark pV, line 54 */
546
+ z->I[2] = z->c;
555
547
  lab0:
556
548
  z->c = c1;
557
549
  }
558
- { int c5 = z->c; /* do, line 56 */
559
- { /* gopast */ /* grouping v, line 57 */
550
+ { int c5 = z->c;
551
+ {
560
552
  int ret = out_grouping_U(z, g_v, 97, 250, 1);
561
553
  if (ret < 0) goto lab7;
562
554
  z->c += ret;
563
555
  }
564
- { /* gopast */ /* non v, line 57 */
556
+ {
565
557
  int ret = in_grouping_U(z, g_v, 97, 250, 1);
566
558
  if (ret < 0) goto lab7;
567
559
  z->c += ret;
568
560
  }
569
- z->I[1] = z->c; /* setmark p1, line 57 */
570
- { /* gopast */ /* grouping v, line 58 */
561
+ z->I[1] = z->c;
562
+ {
571
563
  int ret = out_grouping_U(z, g_v, 97, 250, 1);
572
564
  if (ret < 0) goto lab7;
573
565
  z->c += ret;
574
566
  }
575
- { /* gopast */ /* non v, line 58 */
567
+ {
576
568
  int ret = in_grouping_U(z, g_v, 97, 250, 1);
577
569
  if (ret < 0) goto lab7;
578
570
  z->c += ret;
579
571
  }
580
- z->I[2] = z->c; /* setmark p2, line 58 */
572
+ z->I[0] = z->c;
581
573
  lab7:
582
574
  z->c = c5;
583
575
  }
@@ -586,29 +578,28 @@ static int r_mark_regions(struct SN_env * z) {
586
578
 
587
579
  static int r_postlude(struct SN_env * z) {
588
580
  int among_var;
589
- while(1) { /* repeat, line 62 */
581
+ while(1) {
590
582
  int c1 = z->c;
591
- z->bra = z->c; /* [, line 63 */
583
+ z->bra = z->c;
592
584
  if (z->c + 1 >= z->l || z->p[z->c + 1] != 126) among_var = 3; else
593
- among_var = find_among(z, a_1, 3); /* substring, line 63 */
585
+ among_var = find_among(z, a_1, 3);
594
586
  if (!(among_var)) goto lab0;
595
- z->ket = z->c; /* ], line 63 */
596
- switch(among_var) {
597
- case 0: goto lab0;
587
+ z->ket = z->c;
588
+ switch (among_var) {
598
589
  case 1:
599
- { int ret = slice_from_s(z, 2, s_2); /* <-, line 64 */
590
+ { int ret = slice_from_s(z, 2, s_2);
600
591
  if (ret < 0) return ret;
601
592
  }
602
593
  break;
603
594
  case 2:
604
- { int ret = slice_from_s(z, 2, s_3); /* <-, line 65 */
595
+ { int ret = slice_from_s(z, 2, s_3);
605
596
  if (ret < 0) return ret;
606
597
  }
607
598
  break;
608
599
  case 3:
609
- { int ret = skip_utf8(z->p, z->c, 0, z->l, 1);
600
+ { int ret = skip_utf8(z->p, z->c, z->l, 1);
610
601
  if (ret < 0) goto lab0;
611
- z->c = ret; /* next, line 66 */
602
+ z->c = ret;
612
603
  }
613
604
  break;
614
605
  }
@@ -621,7 +612,7 @@ static int r_postlude(struct SN_env * z) {
621
612
  }
622
613
 
623
614
  static int r_RV(struct SN_env * z) {
624
- if (!(z->I[0] <= z->c)) return 0;
615
+ if (!(z->I[2] <= z->c)) return 0;
625
616
  return 1;
626
617
  }
627
618
 
@@ -631,87 +622,80 @@ static int r_R1(struct SN_env * z) {
631
622
  }
632
623
 
633
624
  static int r_R2(struct SN_env * z) {
634
- if (!(z->I[2] <= z->c)) return 0;
625
+ if (!(z->I[0] <= z->c)) return 0;
635
626
  return 1;
636
627
  }
637
628
 
638
629
  static int r_standard_suffix(struct SN_env * z) {
639
630
  int among_var;
640
- z->ket = z->c; /* [, line 77 */
641
- if (z->c - 2 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((839714 >> (z->p[z->c - 1] & 0x1f)) & 1)) return 0;
642
- among_var = find_among_b(z, a_5, 45); /* substring, line 77 */
631
+ z->ket = z->c;
632
+ if (z->c - 2 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((823330 >> (z->p[z->c - 1] & 0x1f)) & 1)) return 0;
633
+ among_var = find_among_b(z, a_5, 45);
643
634
  if (!(among_var)) return 0;
644
- z->bra = z->c; /* ], line 77 */
645
- switch(among_var) {
646
- case 0: return 0;
635
+ z->bra = z->c;
636
+ switch (among_var) {
647
637
  case 1:
648
638
  { int ret = r_R2(z);
649
- if (ret == 0) return 0; /* call R2, line 93 */
650
- if (ret < 0) return ret;
639
+ if (ret <= 0) return ret;
651
640
  }
652
- { int ret = slice_del(z); /* delete, line 93 */
641
+ { int ret = slice_del(z);
653
642
  if (ret < 0) return ret;
654
643
  }
655
644
  break;
656
645
  case 2:
657
646
  { int ret = r_R2(z);
658
- if (ret == 0) return 0; /* call R2, line 98 */
659
- if (ret < 0) return ret;
647
+ if (ret <= 0) return ret;
660
648
  }
661
- { int ret = slice_from_s(z, 3, s_4); /* <-, line 98 */
649
+ { int ret = slice_from_s(z, 3, s_4);
662
650
  if (ret < 0) return ret;
663
651
  }
664
652
  break;
665
653
  case 3:
666
654
  { int ret = r_R2(z);
667
- if (ret == 0) return 0; /* call R2, line 102 */
668
- if (ret < 0) return ret;
655
+ if (ret <= 0) return ret;
669
656
  }
670
- { int ret = slice_from_s(z, 1, s_5); /* <-, line 102 */
657
+ { int ret = slice_from_s(z, 1, s_5);
671
658
  if (ret < 0) return ret;
672
659
  }
673
660
  break;
674
661
  case 4:
675
662
  { int ret = r_R2(z);
676
- if (ret == 0) return 0; /* call R2, line 106 */
677
- if (ret < 0) return ret;
663
+ if (ret <= 0) return ret;
678
664
  }
679
- { int ret = slice_from_s(z, 4, s_6); /* <-, line 106 */
665
+ { int ret = slice_from_s(z, 4, s_6);
680
666
  if (ret < 0) return ret;
681
667
  }
682
668
  break;
683
669
  case 5:
684
670
  { int ret = r_R1(z);
685
- if (ret == 0) return 0; /* call R1, line 110 */
686
- if (ret < 0) return ret;
671
+ if (ret <= 0) return ret;
687
672
  }
688
- { int ret = slice_del(z); /* delete, line 110 */
673
+ { int ret = slice_del(z);
689
674
  if (ret < 0) return ret;
690
675
  }
691
- { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 111 */
692
- z->ket = z->c; /* [, line 112 */
693
- if (z->c - 1 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((4718616 >> (z->p[z->c - 1] & 0x1f)) & 1)) { z->c = z->l - m_keep; goto lab0; }
694
- among_var = find_among_b(z, a_2, 4); /* substring, line 112 */
695
- if (!(among_var)) { z->c = z->l - m_keep; goto lab0; }
696
- z->bra = z->c; /* ], line 112 */
676
+ { int m1 = z->l - z->c; (void)m1;
677
+ z->ket = z->c;
678
+ if (z->c - 1 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((4718616 >> (z->p[z->c - 1] & 0x1f)) & 1)) { z->c = z->l - m1; goto lab0; }
679
+ among_var = find_among_b(z, a_2, 4);
680
+ if (!(among_var)) { z->c = z->l - m1; goto lab0; }
681
+ z->bra = z->c;
697
682
  { int ret = r_R2(z);
698
- if (ret == 0) { z->c = z->l - m_keep; goto lab0; } /* call R2, line 112 */
683
+ if (ret == 0) { z->c = z->l - m1; goto lab0; }
699
684
  if (ret < 0) return ret;
700
685
  }
701
- { int ret = slice_del(z); /* delete, line 112 */
686
+ { int ret = slice_del(z);
702
687
  if (ret < 0) return ret;
703
688
  }
704
- switch(among_var) {
705
- case 0: { z->c = z->l - m_keep; goto lab0; }
689
+ switch (among_var) {
706
690
  case 1:
707
- z->ket = z->c; /* [, line 113 */
708
- if (!(eq_s_b(z, 2, s_7))) { z->c = z->l - m_keep; goto lab0; }
709
- z->bra = z->c; /* ], line 113 */
691
+ z->ket = z->c;
692
+ if (!(eq_s_b(z, 2, s_7))) { z->c = z->l - m1; goto lab0; }
693
+ z->bra = z->c;
710
694
  { int ret = r_R2(z);
711
- if (ret == 0) { z->c = z->l - m_keep; goto lab0; } /* call R2, line 113 */
695
+ if (ret == 0) { z->c = z->l - m1; goto lab0; }
712
696
  if (ret < 0) return ret;
713
697
  }
714
- { int ret = slice_del(z); /* delete, line 113 */
698
+ { int ret = slice_del(z);
715
699
  if (ret < 0) return ret;
716
700
  }
717
701
  break;
@@ -722,29 +706,22 @@ static int r_standard_suffix(struct SN_env * z) {
722
706
  break;
723
707
  case 6:
724
708
  { int ret = r_R2(z);
725
- if (ret == 0) return 0; /* call R2, line 122 */
726
- if (ret < 0) return ret;
709
+ if (ret <= 0) return ret;
727
710
  }
728
- { int ret = slice_del(z); /* delete, line 122 */
711
+ { int ret = slice_del(z);
729
712
  if (ret < 0) return ret;
730
713
  }
731
- { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 123 */
732
- z->ket = z->c; /* [, line 124 */
733
- if (z->c - 3 <= z->lb || (z->p[z->c - 1] != 101 && z->p[z->c - 1] != 108)) { z->c = z->l - m_keep; goto lab1; }
734
- among_var = find_among_b(z, a_3, 3); /* substring, line 124 */
735
- if (!(among_var)) { z->c = z->l - m_keep; goto lab1; }
736
- z->bra = z->c; /* ], line 124 */
737
- switch(among_var) {
738
- case 0: { z->c = z->l - m_keep; goto lab1; }
739
- case 1:
740
- { int ret = r_R2(z);
741
- if (ret == 0) { z->c = z->l - m_keep; goto lab1; } /* call R2, line 127 */
742
- if (ret < 0) return ret;
743
- }
744
- { int ret = slice_del(z); /* delete, line 127 */
745
- if (ret < 0) return ret;
746
- }
747
- break;
714
+ { int m2 = z->l - z->c; (void)m2;
715
+ z->ket = z->c;
716
+ if (z->c - 3 <= z->lb || (z->p[z->c - 1] != 101 && z->p[z->c - 1] != 108)) { z->c = z->l - m2; goto lab1; }
717
+ if (!(find_among_b(z, a_3, 3))) { z->c = z->l - m2; goto lab1; }
718
+ z->bra = z->c;
719
+ { int ret = r_R2(z);
720
+ if (ret == 0) { z->c = z->l - m2; goto lab1; }
721
+ if (ret < 0) return ret;
722
+ }
723
+ { int ret = slice_del(z);
724
+ if (ret < 0) return ret;
748
725
  }
749
726
  lab1:
750
727
  ;
@@ -752,29 +729,22 @@ static int r_standard_suffix(struct SN_env * z) {
752
729
  break;
753
730
  case 7:
754
731
  { int ret = r_R2(z);
755
- if (ret == 0) return 0; /* call R2, line 134 */
756
- if (ret < 0) return ret;
732
+ if (ret <= 0) return ret;
757
733
  }
758
- { int ret = slice_del(z); /* delete, line 134 */
734
+ { int ret = slice_del(z);
759
735
  if (ret < 0) return ret;
760
736
  }
761
- { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 135 */
762
- z->ket = z->c; /* [, line 136 */
763
- 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 lab2; }
764
- among_var = find_among_b(z, a_4, 3); /* substring, line 136 */
765
- if (!(among_var)) { z->c = z->l - m_keep; goto lab2; }
766
- z->bra = z->c; /* ], line 136 */
767
- switch(among_var) {
768
- case 0: { z->c = z->l - m_keep; goto lab2; }
769
- case 1:
770
- { int ret = r_R2(z);
771
- if (ret == 0) { z->c = z->l - m_keep; goto lab2; } /* call R2, line 139 */
772
- if (ret < 0) return ret;
773
- }
774
- { int ret = slice_del(z); /* delete, line 139 */
775
- if (ret < 0) return ret;
776
- }
777
- break;
737
+ { int m3 = z->l - z->c; (void)m3;
738
+ z->ket = z->c;
739
+ 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 - m3; goto lab2; }
740
+ if (!(find_among_b(z, a_4, 3))) { z->c = z->l - m3; goto lab2; }
741
+ z->bra = z->c;
742
+ { int ret = r_R2(z);
743
+ if (ret == 0) { z->c = z->l - m3; goto lab2; }
744
+ if (ret < 0) return ret;
745
+ }
746
+ { int ret = slice_del(z);
747
+ if (ret < 0) return ret;
778
748
  }
779
749
  lab2:
780
750
  ;
@@ -782,21 +752,20 @@ static int r_standard_suffix(struct SN_env * z) {
782
752
  break;
783
753
  case 8:
784
754
  { int ret = r_R2(z);
785
- if (ret == 0) return 0; /* call R2, line 146 */
786
- if (ret < 0) return ret;
755
+ if (ret <= 0) return ret;
787
756
  }
788
- { int ret = slice_del(z); /* delete, line 146 */
757
+ { int ret = slice_del(z);
789
758
  if (ret < 0) return ret;
790
759
  }
791
- { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 147 */
792
- z->ket = z->c; /* [, line 148 */
793
- if (!(eq_s_b(z, 2, s_8))) { z->c = z->l - m_keep; goto lab3; }
794
- z->bra = z->c; /* ], line 148 */
760
+ { int m4 = z->l - z->c; (void)m4;
761
+ z->ket = z->c;
762
+ if (!(eq_s_b(z, 2, s_8))) { z->c = z->l - m4; goto lab3; }
763
+ z->bra = z->c;
795
764
  { int ret = r_R2(z);
796
- if (ret == 0) { z->c = z->l - m_keep; goto lab3; } /* call R2, line 148 */
765
+ if (ret == 0) { z->c = z->l - m4; goto lab3; }
797
766
  if (ret < 0) return ret;
798
767
  }
799
- { int ret = slice_del(z); /* delete, line 148 */
768
+ { int ret = slice_del(z);
800
769
  if (ret < 0) return ret;
801
770
  }
802
771
  lab3:
@@ -805,11 +774,11 @@ static int r_standard_suffix(struct SN_env * z) {
805
774
  break;
806
775
  case 9:
807
776
  { int ret = r_RV(z);
808
- if (ret == 0) return 0; /* call RV, line 153 */
809
- if (ret < 0) return ret;
777
+ if (ret <= 0) return ret;
810
778
  }
811
- if (!(eq_s_b(z, 1, s_9))) return 0;
812
- { int ret = slice_from_s(z, 2, s_10); /* <-, line 154 */
779
+ if (z->c <= z->lb || z->p[z->c - 1] != 'e') return 0;
780
+ z->c--;
781
+ { int ret = slice_from_s(z, 2, s_9);
813
782
  if (ret < 0) return ret;
814
783
  }
815
784
  break;
@@ -818,96 +787,80 @@ static int r_standard_suffix(struct SN_env * z) {
818
787
  }
819
788
 
820
789
  static int r_verb_suffix(struct SN_env * z) {
821
- int among_var;
822
- { int mlimit; /* setlimit, line 159 */
823
- int m1 = z->l - z->c; (void)m1;
824
- if (z->c < z->I[0]) return 0;
825
- z->c = z->I[0]; /* tomark, line 159 */
826
- mlimit = z->lb; z->lb = z->c;
827
- z->c = z->l - m1;
828
- z->ket = z->c; /* [, line 160 */
829
- among_var = find_among_b(z, a_6, 120); /* substring, line 160 */
830
- if (!(among_var)) { z->lb = mlimit; return 0; }
831
- z->bra = z->c; /* ], line 160 */
832
- switch(among_var) {
833
- case 0: { z->lb = mlimit; return 0; }
834
- case 1:
835
- { int ret = slice_del(z); /* delete, line 179 */
836
- if (ret < 0) return ret;
837
- }
838
- break;
790
+
791
+ { int mlimit1;
792
+ if (z->c < z->I[2]) return 0;
793
+ mlimit1 = z->lb; z->lb = z->I[2];
794
+ z->ket = z->c;
795
+ if (!(find_among_b(z, a_6, 120))) { z->lb = mlimit1; return 0; }
796
+ z->bra = z->c;
797
+ { int ret = slice_del(z);
798
+ if (ret < 0) return ret;
839
799
  }
840
- z->lb = mlimit;
800
+ z->lb = mlimit1;
841
801
  }
842
802
  return 1;
843
803
  }
844
804
 
845
805
  static int r_residual_suffix(struct SN_env * z) {
846
- int among_var;
847
- z->ket = z->c; /* [, line 184 */
848
- among_var = find_among_b(z, a_7, 7); /* substring, line 184 */
849
- if (!(among_var)) return 0;
850
- z->bra = z->c; /* ], line 184 */
851
- switch(among_var) {
852
- case 0: return 0;
853
- case 1:
854
- { int ret = r_RV(z);
855
- if (ret == 0) return 0; /* call RV, line 187 */
856
- if (ret < 0) return ret;
857
- }
858
- { int ret = slice_del(z); /* delete, line 187 */
859
- if (ret < 0) return ret;
860
- }
861
- break;
806
+ z->ket = z->c;
807
+ if (!(find_among_b(z, a_7, 7))) return 0;
808
+ z->bra = z->c;
809
+ { int ret = r_RV(z);
810
+ if (ret <= 0) return ret;
811
+ }
812
+ { int ret = slice_del(z);
813
+ if (ret < 0) return ret;
862
814
  }
863
815
  return 1;
864
816
  }
865
817
 
866
818
  static int r_residual_form(struct SN_env * z) {
867
819
  int among_var;
868
- z->ket = z->c; /* [, line 192 */
869
- among_var = find_among_b(z, a_8, 4); /* substring, line 192 */
820
+ z->ket = z->c;
821
+ among_var = find_among_b(z, a_8, 4);
870
822
  if (!(among_var)) return 0;
871
- z->bra = z->c; /* ], line 192 */
872
- switch(among_var) {
873
- case 0: return 0;
823
+ z->bra = z->c;
824
+ switch (among_var) {
874
825
  case 1:
875
826
  { int ret = r_RV(z);
876
- if (ret == 0) return 0; /* call RV, line 194 */
877
- if (ret < 0) return ret;
827
+ if (ret <= 0) return ret;
878
828
  }
879
- { int ret = slice_del(z); /* delete, line 194 */
829
+ { int ret = slice_del(z);
880
830
  if (ret < 0) return ret;
881
831
  }
882
- z->ket = z->c; /* [, line 194 */
883
- { int m1 = z->l - z->c; (void)m1; /* or, line 194 */
884
- if (!(eq_s_b(z, 1, s_11))) goto lab1;
885
- z->bra = z->c; /* ], line 194 */
886
- { int m_test = z->l - z->c; /* test, line 194 */
887
- if (!(eq_s_b(z, 1, s_12))) goto lab1;
888
- z->c = z->l - m_test;
832
+ z->ket = z->c;
833
+ { int m1 = z->l - z->c; (void)m1;
834
+ if (z->c <= z->lb || z->p[z->c - 1] != 'u') goto lab1;
835
+ z->c--;
836
+ z->bra = z->c;
837
+ { int m_test2 = z->l - z->c;
838
+ if (z->c <= z->lb || z->p[z->c - 1] != 'g') goto lab1;
839
+ z->c--;
840
+ z->c = z->l - m_test2;
889
841
  }
890
842
  goto lab0;
891
843
  lab1:
892
844
  z->c = z->l - m1;
893
- if (!(eq_s_b(z, 1, s_13))) return 0;
894
- z->bra = z->c; /* ], line 195 */
895
- { int m_test = z->l - z->c; /* test, line 195 */
896
- if (!(eq_s_b(z, 1, s_14))) return 0;
897
- z->c = z->l - m_test;
845
+ if (z->c <= z->lb || z->p[z->c - 1] != 'i') return 0;
846
+ z->c--;
847
+ z->bra = z->c;
848
+ { int m_test3 = z->l - z->c;
849
+ if (z->c <= z->lb || z->p[z->c - 1] != 'c') return 0;
850
+ z->c--;
851
+ z->c = z->l - m_test3;
898
852
  }
899
853
  }
900
854
  lab0:
901
855
  { int ret = r_RV(z);
902
- if (ret == 0) return 0; /* call RV, line 195 */
903
- if (ret < 0) return ret;
856
+ if (ret <= 0) return ret;
904
857
  }
905
- { int ret = slice_del(z); /* delete, line 195 */
858
+ { int ret = slice_del(z);
906
859
  if (ret < 0) return ret;
907
860
  }
908
861
  break;
909
862
  case 2:
910
- { int ret = slice_from_s(z, 1, s_15); /* <-, line 196 */
863
+ { int ret = slice_from_s(z, 1, s_10);
911
864
  if (ret < 0) return ret;
912
865
  }
913
866
  break;
@@ -916,94 +869,86 @@ static int r_residual_form(struct SN_env * z) {
916
869
  }
917
870
 
918
871
  extern int portuguese_UTF_8_stem(struct SN_env * z) {
919
- { int c1 = z->c; /* do, line 202 */
872
+ { int c1 = z->c;
920
873
  { int ret = r_prelude(z);
921
- if (ret == 0) goto lab0; /* call prelude, line 202 */
922
874
  if (ret < 0) return ret;
923
875
  }
924
- lab0:
925
876
  z->c = c1;
926
877
  }
927
- { int c2 = z->c; /* do, line 203 */
928
- { int ret = r_mark_regions(z);
929
- if (ret == 0) goto lab1; /* call mark_regions, line 203 */
930
- if (ret < 0) return ret;
931
- }
932
- lab1:
933
- z->c = c2;
878
+
879
+ { int ret = r_mark_regions(z);
880
+ if (ret < 0) return ret;
934
881
  }
935
- z->lb = z->c; z->c = z->l; /* backwards, line 204 */
882
+ z->lb = z->c; z->c = z->l;
936
883
 
937
- { int m3 = z->l - z->c; (void)m3; /* do, line 205 */
938
- { int m4 = z->l - z->c; (void)m4; /* or, line 209 */
939
- { int m5 = z->l - z->c; (void)m5; /* and, line 207 */
940
- { int m6 = z->l - z->c; (void)m6; /* or, line 206 */
884
+ { int m2 = z->l - z->c; (void)m2;
885
+ { int m3 = z->l - z->c; (void)m3;
886
+ { int m4 = z->l - z->c; (void)m4;
887
+ { int m5 = z->l - z->c; (void)m5;
941
888
  { int ret = r_standard_suffix(z);
942
- if (ret == 0) goto lab6; /* call standard_suffix, line 206 */
889
+ if (ret == 0) goto lab4;
943
890
  if (ret < 0) return ret;
944
891
  }
945
- goto lab5;
946
- lab6:
947
- z->c = z->l - m6;
892
+ goto lab3;
893
+ lab4:
894
+ z->c = z->l - m5;
948
895
  { int ret = r_verb_suffix(z);
949
- if (ret == 0) goto lab4; /* call verb_suffix, line 206 */
896
+ if (ret == 0) goto lab2;
950
897
  if (ret < 0) return ret;
951
898
  }
952
899
  }
953
- lab5:
954
- z->c = z->l - m5;
955
- { int m7 = z->l - z->c; (void)m7; /* do, line 207 */
956
- z->ket = z->c; /* [, line 207 */
957
- if (!(eq_s_b(z, 1, s_16))) goto lab7;
958
- z->bra = z->c; /* ], line 207 */
959
- { int m_test = z->l - z->c; /* test, line 207 */
960
- if (!(eq_s_b(z, 1, s_17))) goto lab7;
961
- z->c = z->l - m_test;
900
+ lab3:
901
+ z->c = z->l - m4;
902
+ { int m6 = z->l - z->c; (void)m6;
903
+ z->ket = z->c;
904
+ if (z->c <= z->lb || z->p[z->c - 1] != 'i') goto lab5;
905
+ z->c--;
906
+ z->bra = z->c;
907
+ { int m_test7 = z->l - z->c;
908
+ if (z->c <= z->lb || z->p[z->c - 1] != 'c') goto lab5;
909
+ z->c--;
910
+ z->c = z->l - m_test7;
962
911
  }
963
912
  { int ret = r_RV(z);
964
- if (ret == 0) goto lab7; /* call RV, line 207 */
913
+ if (ret == 0) goto lab5;
965
914
  if (ret < 0) return ret;
966
915
  }
967
- { int ret = slice_del(z); /* delete, line 207 */
916
+ { int ret = slice_del(z);
968
917
  if (ret < 0) return ret;
969
918
  }
970
- lab7:
971
- z->c = z->l - m7;
919
+ lab5:
920
+ z->c = z->l - m6;
972
921
  }
973
922
  }
974
- goto lab3;
975
- lab4:
976
- z->c = z->l - m4;
923
+ goto lab1;
924
+ lab2:
925
+ z->c = z->l - m3;
977
926
  { int ret = r_residual_suffix(z);
978
- if (ret == 0) goto lab2; /* call residual_suffix, line 209 */
927
+ if (ret == 0) goto lab0;
979
928
  if (ret < 0) return ret;
980
929
  }
981
930
  }
982
- lab3:
983
- lab2:
984
- z->c = z->l - m3;
931
+ lab1:
932
+ lab0:
933
+ z->c = z->l - m2;
985
934
  }
986
- { int m8 = z->l - z->c; (void)m8; /* do, line 211 */
935
+ { int m8 = z->l - z->c; (void)m8;
987
936
  { int ret = r_residual_form(z);
988
- if (ret == 0) goto lab8; /* call residual_form, line 211 */
989
937
  if (ret < 0) return ret;
990
938
  }
991
- lab8:
992
939
  z->c = z->l - m8;
993
940
  }
994
941
  z->c = z->lb;
995
- { int c9 = z->c; /* do, line 213 */
942
+ { int c9 = z->c;
996
943
  { int ret = r_postlude(z);
997
- if (ret == 0) goto lab9; /* call postlude, line 213 */
998
944
  if (ret < 0) return ret;
999
945
  }
1000
- lab9:
1001
946
  z->c = c9;
1002
947
  }
1003
948
  return 1;
1004
949
  }
1005
950
 
1006
- extern struct SN_env * portuguese_UTF_8_create_env(void) { return SN_create_env(0, 3, 0); }
951
+ extern struct SN_env * portuguese_UTF_8_create_env(void) { return SN_create_env(0, 3); }
1007
952
 
1008
953
  extern void portuguese_UTF_8_close_env(struct SN_env * z) { SN_close_env(z, 0); }
1009
954