isomorfeus-ferret 0.12.7 → 0.13.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +101 -19
- data/README.md +54 -1
- data/ext/isomorfeus_ferret_ext/bm_bitvector.c +22 -30
- data/ext/isomorfeus_ferret_ext/bm_hash.c +6 -12
- data/ext/isomorfeus_ferret_ext/bm_micro_string.c +3 -6
- data/ext/isomorfeus_ferret_ext/bm_store.c +11 -22
- data/ext/isomorfeus_ferret_ext/brotli_common_dictionary.c +1 -1
- data/ext/isomorfeus_ferret_ext/brotli_dec_decode.c +1 -1
- data/ext/isomorfeus_ferret_ext/bzip_blocksort.c +1094 -0
- data/ext/isomorfeus_ferret_ext/bzip_huffman.c +205 -0
- data/ext/isomorfeus_ferret_ext/bzlib.c +1572 -0
- data/ext/isomorfeus_ferret_ext/bzlib.h +282 -0
- data/ext/isomorfeus_ferret_ext/bzlib_compress.c +672 -0
- data/ext/isomorfeus_ferret_ext/bzlib_crctable.c +104 -0
- data/ext/isomorfeus_ferret_ext/bzlib_decompress.c +652 -0
- data/ext/isomorfeus_ferret_ext/bzlib_private.h +509 -0
- data/ext/isomorfeus_ferret_ext/bzlib_randtable.c +84 -0
- data/ext/isomorfeus_ferret_ext/fio_tmpfile.h +53 -53
- data/ext/isomorfeus_ferret_ext/frb_analysis.c +785 -1192
- data/ext/isomorfeus_ferret_ext/frb_index.c +492 -474
- data/ext/isomorfeus_ferret_ext/frb_qparser.c +48 -60
- data/ext/isomorfeus_ferret_ext/frb_search.c +1520 -1002
- data/ext/isomorfeus_ferret_ext/frb_store.c +96 -96
- data/ext/isomorfeus_ferret_ext/frb_threading.h +0 -1
- data/ext/isomorfeus_ferret_ext/frb_utils.c +147 -196
- data/ext/isomorfeus_ferret_ext/frt_analysis.c +695 -1090
- data/ext/isomorfeus_ferret_ext/frt_analysis.h +174 -170
- data/ext/isomorfeus_ferret_ext/frt_array.c +2 -4
- data/ext/isomorfeus_ferret_ext/frt_bitvector.c +9 -16
- data/ext/isomorfeus_ferret_ext/frt_bitvector.h +32 -81
- data/ext/isomorfeus_ferret_ext/frt_document.c +15 -20
- data/ext/isomorfeus_ferret_ext/frt_document.h +10 -10
- data/ext/isomorfeus_ferret_ext/frt_except.c +5 -12
- data/ext/isomorfeus_ferret_ext/frt_field_index.c +3 -3
- data/ext/isomorfeus_ferret_ext/frt_field_index.h +6 -7
- data/ext/isomorfeus_ferret_ext/frt_filter.c +35 -46
- data/ext/isomorfeus_ferret_ext/frt_fs_store.c +1 -0
- data/ext/isomorfeus_ferret_ext/frt_global.c +105 -63
- data/ext/isomorfeus_ferret_ext/frt_global.h +7 -3
- data/ext/isomorfeus_ferret_ext/frt_hash.c +1 -2
- data/ext/isomorfeus_ferret_ext/frt_ind.c +32 -35
- data/ext/isomorfeus_ferret_ext/frt_ind.h +9 -9
- data/ext/isomorfeus_ferret_ext/frt_index.c +580 -399
- data/ext/isomorfeus_ferret_ext/frt_index.h +272 -291
- data/ext/isomorfeus_ferret_ext/frt_mempool.c +1 -2
- data/ext/isomorfeus_ferret_ext/frt_multimapper.c +4 -7
- data/ext/isomorfeus_ferret_ext/frt_q_boolean.c +67 -91
- data/ext/isomorfeus_ferret_ext/frt_q_const_score.c +35 -38
- data/ext/isomorfeus_ferret_ext/frt_q_filtered_query.c +53 -72
- data/ext/isomorfeus_ferret_ext/frt_q_fuzzy.c +25 -32
- data/ext/isomorfeus_ferret_ext/frt_q_match_all.c +21 -23
- data/ext/isomorfeus_ferret_ext/frt_q_multi_term.c +66 -103
- data/ext/isomorfeus_ferret_ext/frt_q_parser.c +207 -195
- data/ext/isomorfeus_ferret_ext/frt_q_phrase.c +20 -16
- data/ext/isomorfeus_ferret_ext/frt_q_prefix.c +17 -14
- data/ext/isomorfeus_ferret_ext/frt_q_range.c +102 -131
- data/ext/isomorfeus_ferret_ext/frt_q_span.c +179 -178
- data/ext/isomorfeus_ferret_ext/frt_q_term.c +47 -60
- data/ext/isomorfeus_ferret_ext/frt_q_wildcard.c +18 -16
- data/ext/isomorfeus_ferret_ext/frt_ram_store.c +45 -84
- data/ext/isomorfeus_ferret_ext/frt_search.c +105 -146
- data/ext/isomorfeus_ferret_ext/frt_search.h +331 -320
- data/ext/isomorfeus_ferret_ext/frt_similarity.c +5 -13
- data/ext/isomorfeus_ferret_ext/frt_similarity.h +7 -12
- data/ext/isomorfeus_ferret_ext/frt_sort.c +105 -149
- data/ext/isomorfeus_ferret_ext/frt_store.c +13 -7
- data/ext/isomorfeus_ferret_ext/frt_store.h +10 -2
- data/ext/isomorfeus_ferret_ext/frt_threading.h +0 -1
- data/ext/isomorfeus_ferret_ext/isomorfeus_ferret.c +21 -109
- data/ext/isomorfeus_ferret_ext/isomorfeus_ferret.h +2 -32
- data/ext/isomorfeus_ferret_ext/lz4.c +2495 -0
- data/ext/isomorfeus_ferret_ext/lz4.h +774 -0
- data/ext/isomorfeus_ferret_ext/lz4frame.c +1899 -0
- data/ext/isomorfeus_ferret_ext/lz4frame.h +623 -0
- data/ext/isomorfeus_ferret_ext/lz4hc.c +1615 -0
- data/ext/isomorfeus_ferret_ext/lz4hc.h +413 -0
- data/ext/isomorfeus_ferret_ext/lz4xxhash.c +1030 -0
- data/ext/isomorfeus_ferret_ext/lz4xxhash.h +328 -0
- data/ext/isomorfeus_ferret_ext/stem_modules.h +0 -86
- data/ext/isomorfeus_ferret_ext/test.c +1 -2
- data/ext/isomorfeus_ferret_ext/test_1710.c +11 -12
- data/ext/isomorfeus_ferret_ext/test_analysis.c +590 -583
- data/ext/isomorfeus_ferret_ext/test_compound_io.c +1 -1
- data/ext/isomorfeus_ferret_ext/test_document.c +19 -15
- data/ext/isomorfeus_ferret_ext/test_except.c +1 -2
- data/ext/isomorfeus_ferret_ext/test_fields.c +59 -60
- data/ext/isomorfeus_ferret_ext/test_file_deleter.c +10 -27
- data/ext/isomorfeus_ferret_ext/test_filter.c +11 -8
- data/ext/isomorfeus_ferret_ext/test_hash.c +2 -2
- data/ext/isomorfeus_ferret_ext/test_hashset.c +1 -1
- data/ext/isomorfeus_ferret_ext/test_highlighter.c +15 -11
- data/ext/isomorfeus_ferret_ext/test_index.c +372 -365
- data/ext/isomorfeus_ferret_ext/test_q_const_score.c +5 -3
- data/ext/isomorfeus_ferret_ext/test_q_filtered.c +5 -3
- data/ext/isomorfeus_ferret_ext/test_q_fuzzy.c +13 -10
- data/ext/isomorfeus_ferret_ext/test_q_parser.c +45 -7
- data/ext/isomorfeus_ferret_ext/test_q_span.c +15 -12
- data/ext/isomorfeus_ferret_ext/test_ram_store.c +3 -3
- data/ext/isomorfeus_ferret_ext/test_search.c +60 -62
- data/ext/isomorfeus_ferret_ext/test_segments.c +5 -4
- data/ext/isomorfeus_ferret_ext/test_sort.c +17 -14
- data/ext/isomorfeus_ferret_ext/test_store.c +2 -0
- data/ext/isomorfeus_ferret_ext/test_term.c +3 -1
- data/ext/isomorfeus_ferret_ext/test_term_vectors.c +9 -10
- data/ext/isomorfeus_ferret_ext/test_test.c +1 -2
- data/ext/isomorfeus_ferret_ext/test_threading.c +9 -10
- data/ext/isomorfeus_ferret_ext/testhelper.c +1 -2
- data/lib/isomorfeus/ferret/version.rb +1 -1
- metadata +27 -57
- data/ext/isomorfeus_ferret_ext/email.rl +0 -21
- data/ext/isomorfeus_ferret_ext/frt_scanner.c +0 -900
- data/ext/isomorfeus_ferret_ext/frt_scanner.h +0 -28
- data/ext/isomorfeus_ferret_ext/frt_scanner_mb.c +0 -6706
- data/ext/isomorfeus_ferret_ext/frt_scanner_utf8.c +0 -4420
- data/ext/isomorfeus_ferret_ext/scanner.h +0 -28
- data/ext/isomorfeus_ferret_ext/scanner.in +0 -43
- data/ext/isomorfeus_ferret_ext/scanner.rl +0 -84
- data/ext/isomorfeus_ferret_ext/scanner_mb.rl +0 -200
- data/ext/isomorfeus_ferret_ext/scanner_utf8.rl +0 -85
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_basque.c +0 -1167
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_basque.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_catalan.c +0 -1433
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_catalan.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_danish.c +0 -301
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_danish.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_dutch.c +0 -590
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_dutch.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_english.c +0 -1049
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_english.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_finnish.c +0 -705
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_finnish.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_french.c +0 -1239
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_french.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_german.c +0 -477
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_german.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_hungarian.c +0 -1217
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_hungarian.h +0 -7
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_indonesian.c +0 -394
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_indonesian.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_irish.c +0 -457
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_irish.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_italian.c +0 -1009
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_italian.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_norwegian.c +0 -259
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_norwegian.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_porter.c +0 -704
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_porter.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_portuguese.c +0 -948
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_portuguese.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_spanish.c +0 -1028
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_spanish.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_swedish.c +0 -275
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_swedish.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_hungarian.c +0 -849
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_hungarian.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_romanian.c +0 -952
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_romanian.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_KOI8_R_russian.c +0 -669
- data/ext/isomorfeus_ferret_ext/stem_KOI8_R_russian.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_modules.txt +0 -63
- data/ext/isomorfeus_ferret_ext/uchar-ucs4.rl +0 -1854
- data/ext/isomorfeus_ferret_ext/uchar-utf8.rl +0 -1999
- data/ext/isomorfeus_ferret_ext/url.rl +0 -27
@@ -1,1049 +0,0 @@
|
|
1
|
-
/* Generated by Snowball 2.2.0 - https://snowballstem.org/ */
|
2
|
-
|
3
|
-
#include "stem_header.h"
|
4
|
-
|
5
|
-
extern int english_ISO_8859_1_stem(struct SN_env * z);
|
6
|
-
|
7
|
-
static int r_exception2(struct SN_env * z);
|
8
|
-
static int r_exception1(struct SN_env * z);
|
9
|
-
static int r_Step_5(struct SN_env * z);
|
10
|
-
static int r_Step_4(struct SN_env * z);
|
11
|
-
static int r_Step_3(struct SN_env * z);
|
12
|
-
static int r_Step_2(struct SN_env * z);
|
13
|
-
static int r_Step_1c(struct SN_env * z);
|
14
|
-
static int r_Step_1b(struct SN_env * z);
|
15
|
-
static int r_Step_1a(struct SN_env * z);
|
16
|
-
static int r_R2(struct SN_env * z);
|
17
|
-
static int r_R1(struct SN_env * z);
|
18
|
-
static int r_shortv(struct SN_env * z);
|
19
|
-
static int r_mark_regions(struct SN_env * z);
|
20
|
-
static int r_postlude(struct SN_env * z);
|
21
|
-
static int r_prelude(struct SN_env * z);
|
22
|
-
|
23
|
-
extern struct SN_env * english_ISO_8859_1_create_env(void);
|
24
|
-
extern void english_ISO_8859_1_close_env(struct SN_env * z);
|
25
|
-
|
26
|
-
static const symbol s_0_0[5] = { 'a', 'r', 's', 'e', 'n' };
|
27
|
-
static const symbol s_0_1[6] = { 'c', 'o', 'm', 'm', 'u', 'n' };
|
28
|
-
static const symbol s_0_2[5] = { 'g', 'e', 'n', 'e', 'r' };
|
29
|
-
|
30
|
-
static const struct among a_0[3] =
|
31
|
-
{
|
32
|
-
{ 5, s_0_0, -1, -1, 0},
|
33
|
-
{ 6, s_0_1, -1, -1, 0},
|
34
|
-
{ 5, s_0_2, -1, -1, 0}
|
35
|
-
};
|
36
|
-
|
37
|
-
static const symbol s_1_0[1] = { '\'' };
|
38
|
-
static const symbol s_1_1[3] = { '\'', 's', '\'' };
|
39
|
-
static const symbol s_1_2[2] = { '\'', 's' };
|
40
|
-
|
41
|
-
static const struct among a_1[3] =
|
42
|
-
{
|
43
|
-
{ 1, s_1_0, -1, 1, 0},
|
44
|
-
{ 3, s_1_1, 0, 1, 0},
|
45
|
-
{ 2, s_1_2, -1, 1, 0}
|
46
|
-
};
|
47
|
-
|
48
|
-
static const symbol s_2_0[3] = { 'i', 'e', 'd' };
|
49
|
-
static const symbol s_2_1[1] = { 's' };
|
50
|
-
static const symbol s_2_2[3] = { 'i', 'e', 's' };
|
51
|
-
static const symbol s_2_3[4] = { 's', 's', 'e', 's' };
|
52
|
-
static const symbol s_2_4[2] = { 's', 's' };
|
53
|
-
static const symbol s_2_5[2] = { 'u', 's' };
|
54
|
-
|
55
|
-
static const struct among a_2[6] =
|
56
|
-
{
|
57
|
-
{ 3, s_2_0, -1, 2, 0},
|
58
|
-
{ 1, s_2_1, -1, 3, 0},
|
59
|
-
{ 3, s_2_2, 1, 2, 0},
|
60
|
-
{ 4, s_2_3, 1, 1, 0},
|
61
|
-
{ 2, s_2_4, 1, -1, 0},
|
62
|
-
{ 2, s_2_5, 1, -1, 0}
|
63
|
-
};
|
64
|
-
|
65
|
-
static const symbol s_3_1[2] = { 'b', 'b' };
|
66
|
-
static const symbol s_3_2[2] = { 'd', 'd' };
|
67
|
-
static const symbol s_3_3[2] = { 'f', 'f' };
|
68
|
-
static const symbol s_3_4[2] = { 'g', 'g' };
|
69
|
-
static const symbol s_3_5[2] = { 'b', 'l' };
|
70
|
-
static const symbol s_3_6[2] = { 'm', 'm' };
|
71
|
-
static const symbol s_3_7[2] = { 'n', 'n' };
|
72
|
-
static const symbol s_3_8[2] = { 'p', 'p' };
|
73
|
-
static const symbol s_3_9[2] = { 'r', 'r' };
|
74
|
-
static const symbol s_3_10[2] = { 'a', 't' };
|
75
|
-
static const symbol s_3_11[2] = { 't', 't' };
|
76
|
-
static const symbol s_3_12[2] = { 'i', 'z' };
|
77
|
-
|
78
|
-
static const struct among a_3[13] =
|
79
|
-
{
|
80
|
-
{ 0, 0, -1, 3, 0},
|
81
|
-
{ 2, s_3_1, 0, 2, 0},
|
82
|
-
{ 2, s_3_2, 0, 2, 0},
|
83
|
-
{ 2, s_3_3, 0, 2, 0},
|
84
|
-
{ 2, s_3_4, 0, 2, 0},
|
85
|
-
{ 2, s_3_5, 0, 1, 0},
|
86
|
-
{ 2, s_3_6, 0, 2, 0},
|
87
|
-
{ 2, s_3_7, 0, 2, 0},
|
88
|
-
{ 2, s_3_8, 0, 2, 0},
|
89
|
-
{ 2, s_3_9, 0, 2, 0},
|
90
|
-
{ 2, s_3_10, 0, 1, 0},
|
91
|
-
{ 2, s_3_11, 0, 2, 0},
|
92
|
-
{ 2, s_3_12, 0, 1, 0}
|
93
|
-
};
|
94
|
-
|
95
|
-
static const symbol s_4_0[2] = { 'e', 'd' };
|
96
|
-
static const symbol s_4_1[3] = { 'e', 'e', 'd' };
|
97
|
-
static const symbol s_4_2[3] = { 'i', 'n', 'g' };
|
98
|
-
static const symbol s_4_3[4] = { 'e', 'd', 'l', 'y' };
|
99
|
-
static const symbol s_4_4[5] = { 'e', 'e', 'd', 'l', 'y' };
|
100
|
-
static const symbol s_4_5[5] = { 'i', 'n', 'g', 'l', 'y' };
|
101
|
-
|
102
|
-
static const struct among a_4[6] =
|
103
|
-
{
|
104
|
-
{ 2, s_4_0, -1, 2, 0},
|
105
|
-
{ 3, s_4_1, 0, 1, 0},
|
106
|
-
{ 3, s_4_2, -1, 2, 0},
|
107
|
-
{ 4, s_4_3, -1, 2, 0},
|
108
|
-
{ 5, s_4_4, 3, 1, 0},
|
109
|
-
{ 5, s_4_5, -1, 2, 0}
|
110
|
-
};
|
111
|
-
|
112
|
-
static const symbol s_5_0[4] = { 'a', 'n', 'c', 'i' };
|
113
|
-
static const symbol s_5_1[4] = { 'e', 'n', 'c', 'i' };
|
114
|
-
static const symbol s_5_2[3] = { 'o', 'g', 'i' };
|
115
|
-
static const symbol s_5_3[2] = { 'l', 'i' };
|
116
|
-
static const symbol s_5_4[3] = { 'b', 'l', 'i' };
|
117
|
-
static const symbol s_5_5[4] = { 'a', 'b', 'l', 'i' };
|
118
|
-
static const symbol s_5_6[4] = { 'a', 'l', 'l', 'i' };
|
119
|
-
static const symbol s_5_7[5] = { 'f', 'u', 'l', 'l', 'i' };
|
120
|
-
static const symbol s_5_8[6] = { 'l', 'e', 's', 's', 'l', 'i' };
|
121
|
-
static const symbol s_5_9[5] = { 'o', 'u', 's', 'l', 'i' };
|
122
|
-
static const symbol s_5_10[5] = { 'e', 'n', 't', 'l', 'i' };
|
123
|
-
static const symbol s_5_11[5] = { 'a', 'l', 'i', 't', 'i' };
|
124
|
-
static const symbol s_5_12[6] = { 'b', 'i', 'l', 'i', 't', 'i' };
|
125
|
-
static const symbol s_5_13[5] = { 'i', 'v', 'i', 't', 'i' };
|
126
|
-
static const symbol s_5_14[6] = { 't', 'i', 'o', 'n', 'a', 'l' };
|
127
|
-
static const symbol s_5_15[7] = { 'a', 't', 'i', 'o', 'n', 'a', 'l' };
|
128
|
-
static const symbol s_5_16[5] = { 'a', 'l', 'i', 's', 'm' };
|
129
|
-
static const symbol s_5_17[5] = { 'a', 't', 'i', 'o', 'n' };
|
130
|
-
static const symbol s_5_18[7] = { 'i', 'z', 'a', 't', 'i', 'o', 'n' };
|
131
|
-
static const symbol s_5_19[4] = { 'i', 'z', 'e', 'r' };
|
132
|
-
static const symbol s_5_20[4] = { 'a', 't', 'o', 'r' };
|
133
|
-
static const symbol s_5_21[7] = { 'i', 'v', 'e', 'n', 'e', 's', 's' };
|
134
|
-
static const symbol s_5_22[7] = { 'f', 'u', 'l', 'n', 'e', 's', 's' };
|
135
|
-
static const symbol s_5_23[7] = { 'o', 'u', 's', 'n', 'e', 's', 's' };
|
136
|
-
|
137
|
-
static const struct among a_5[24] =
|
138
|
-
{
|
139
|
-
{ 4, s_5_0, -1, 3, 0},
|
140
|
-
{ 4, s_5_1, -1, 2, 0},
|
141
|
-
{ 3, s_5_2, -1, 13, 0},
|
142
|
-
{ 2, s_5_3, -1, 15, 0},
|
143
|
-
{ 3, s_5_4, 3, 12, 0},
|
144
|
-
{ 4, s_5_5, 4, 4, 0},
|
145
|
-
{ 4, s_5_6, 3, 8, 0},
|
146
|
-
{ 5, s_5_7, 3, 9, 0},
|
147
|
-
{ 6, s_5_8, 3, 14, 0},
|
148
|
-
{ 5, s_5_9, 3, 10, 0},
|
149
|
-
{ 5, s_5_10, 3, 5, 0},
|
150
|
-
{ 5, s_5_11, -1, 8, 0},
|
151
|
-
{ 6, s_5_12, -1, 12, 0},
|
152
|
-
{ 5, s_5_13, -1, 11, 0},
|
153
|
-
{ 6, s_5_14, -1, 1, 0},
|
154
|
-
{ 7, s_5_15, 14, 7, 0},
|
155
|
-
{ 5, s_5_16, -1, 8, 0},
|
156
|
-
{ 5, s_5_17, -1, 7, 0},
|
157
|
-
{ 7, s_5_18, 17, 6, 0},
|
158
|
-
{ 4, s_5_19, -1, 6, 0},
|
159
|
-
{ 4, s_5_20, -1, 7, 0},
|
160
|
-
{ 7, s_5_21, -1, 11, 0},
|
161
|
-
{ 7, s_5_22, -1, 9, 0},
|
162
|
-
{ 7, s_5_23, -1, 10, 0}
|
163
|
-
};
|
164
|
-
|
165
|
-
static const symbol s_6_0[5] = { 'i', 'c', 'a', 't', 'e' };
|
166
|
-
static const symbol s_6_1[5] = { 'a', 't', 'i', 'v', 'e' };
|
167
|
-
static const symbol s_6_2[5] = { 'a', 'l', 'i', 'z', 'e' };
|
168
|
-
static const symbol s_6_3[5] = { 'i', 'c', 'i', 't', 'i' };
|
169
|
-
static const symbol s_6_4[4] = { 'i', 'c', 'a', 'l' };
|
170
|
-
static const symbol s_6_5[6] = { 't', 'i', 'o', 'n', 'a', 'l' };
|
171
|
-
static const symbol s_6_6[7] = { 'a', 't', 'i', 'o', 'n', 'a', 'l' };
|
172
|
-
static const symbol s_6_7[3] = { 'f', 'u', 'l' };
|
173
|
-
static const symbol s_6_8[4] = { 'n', 'e', 's', 's' };
|
174
|
-
|
175
|
-
static const struct among a_6[9] =
|
176
|
-
{
|
177
|
-
{ 5, s_6_0, -1, 4, 0},
|
178
|
-
{ 5, s_6_1, -1, 6, 0},
|
179
|
-
{ 5, s_6_2, -1, 3, 0},
|
180
|
-
{ 5, s_6_3, -1, 4, 0},
|
181
|
-
{ 4, s_6_4, -1, 4, 0},
|
182
|
-
{ 6, s_6_5, -1, 1, 0},
|
183
|
-
{ 7, s_6_6, 5, 2, 0},
|
184
|
-
{ 3, s_6_7, -1, 5, 0},
|
185
|
-
{ 4, s_6_8, -1, 5, 0}
|
186
|
-
};
|
187
|
-
|
188
|
-
static const symbol s_7_0[2] = { 'i', 'c' };
|
189
|
-
static const symbol s_7_1[4] = { 'a', 'n', 'c', 'e' };
|
190
|
-
static const symbol s_7_2[4] = { 'e', 'n', 'c', 'e' };
|
191
|
-
static const symbol s_7_3[4] = { 'a', 'b', 'l', 'e' };
|
192
|
-
static const symbol s_7_4[4] = { 'i', 'b', 'l', 'e' };
|
193
|
-
static const symbol s_7_5[3] = { 'a', 't', 'e' };
|
194
|
-
static const symbol s_7_6[3] = { 'i', 'v', 'e' };
|
195
|
-
static const symbol s_7_7[3] = { 'i', 'z', 'e' };
|
196
|
-
static const symbol s_7_8[3] = { 'i', 't', 'i' };
|
197
|
-
static const symbol s_7_9[2] = { 'a', 'l' };
|
198
|
-
static const symbol s_7_10[3] = { 'i', 's', 'm' };
|
199
|
-
static const symbol s_7_11[3] = { 'i', 'o', 'n' };
|
200
|
-
static const symbol s_7_12[2] = { 'e', 'r' };
|
201
|
-
static const symbol s_7_13[3] = { 'o', 'u', 's' };
|
202
|
-
static const symbol s_7_14[3] = { 'a', 'n', 't' };
|
203
|
-
static const symbol s_7_15[3] = { 'e', 'n', 't' };
|
204
|
-
static const symbol s_7_16[4] = { 'm', 'e', 'n', 't' };
|
205
|
-
static const symbol s_7_17[5] = { 'e', 'm', 'e', 'n', 't' };
|
206
|
-
|
207
|
-
static const struct among a_7[18] =
|
208
|
-
{
|
209
|
-
{ 2, s_7_0, -1, 1, 0},
|
210
|
-
{ 4, s_7_1, -1, 1, 0},
|
211
|
-
{ 4, s_7_2, -1, 1, 0},
|
212
|
-
{ 4, s_7_3, -1, 1, 0},
|
213
|
-
{ 4, s_7_4, -1, 1, 0},
|
214
|
-
{ 3, s_7_5, -1, 1, 0},
|
215
|
-
{ 3, s_7_6, -1, 1, 0},
|
216
|
-
{ 3, s_7_7, -1, 1, 0},
|
217
|
-
{ 3, s_7_8, -1, 1, 0},
|
218
|
-
{ 2, s_7_9, -1, 1, 0},
|
219
|
-
{ 3, s_7_10, -1, 1, 0},
|
220
|
-
{ 3, s_7_11, -1, 2, 0},
|
221
|
-
{ 2, s_7_12, -1, 1, 0},
|
222
|
-
{ 3, s_7_13, -1, 1, 0},
|
223
|
-
{ 3, s_7_14, -1, 1, 0},
|
224
|
-
{ 3, s_7_15, -1, 1, 0},
|
225
|
-
{ 4, s_7_16, 15, 1, 0},
|
226
|
-
{ 5, s_7_17, 16, 1, 0}
|
227
|
-
};
|
228
|
-
|
229
|
-
static const symbol s_8_0[1] = { 'e' };
|
230
|
-
static const symbol s_8_1[1] = { 'l' };
|
231
|
-
|
232
|
-
static const struct among a_8[2] =
|
233
|
-
{
|
234
|
-
{ 1, s_8_0, -1, 1, 0},
|
235
|
-
{ 1, s_8_1, -1, 2, 0}
|
236
|
-
};
|
237
|
-
|
238
|
-
static const symbol s_9_0[7] = { 's', 'u', 'c', 'c', 'e', 'e', 'd' };
|
239
|
-
static const symbol s_9_1[7] = { 'p', 'r', 'o', 'c', 'e', 'e', 'd' };
|
240
|
-
static const symbol s_9_2[6] = { 'e', 'x', 'c', 'e', 'e', 'd' };
|
241
|
-
static const symbol s_9_3[7] = { 'c', 'a', 'n', 'n', 'i', 'n', 'g' };
|
242
|
-
static const symbol s_9_4[6] = { 'i', 'n', 'n', 'i', 'n', 'g' };
|
243
|
-
static const symbol s_9_5[7] = { 'e', 'a', 'r', 'r', 'i', 'n', 'g' };
|
244
|
-
static const symbol s_9_6[7] = { 'h', 'e', 'r', 'r', 'i', 'n', 'g' };
|
245
|
-
static const symbol s_9_7[6] = { 'o', 'u', 't', 'i', 'n', 'g' };
|
246
|
-
|
247
|
-
static const struct among a_9[8] =
|
248
|
-
{
|
249
|
-
{ 7, s_9_0, -1, -1, 0},
|
250
|
-
{ 7, s_9_1, -1, -1, 0},
|
251
|
-
{ 6, s_9_2, -1, -1, 0},
|
252
|
-
{ 7, s_9_3, -1, -1, 0},
|
253
|
-
{ 6, s_9_4, -1, -1, 0},
|
254
|
-
{ 7, s_9_5, -1, -1, 0},
|
255
|
-
{ 7, s_9_6, -1, -1, 0},
|
256
|
-
{ 6, s_9_7, -1, -1, 0}
|
257
|
-
};
|
258
|
-
|
259
|
-
static const symbol s_10_0[5] = { 'a', 'n', 'd', 'e', 's' };
|
260
|
-
static const symbol s_10_1[5] = { 'a', 't', 'l', 'a', 's' };
|
261
|
-
static const symbol s_10_2[4] = { 'b', 'i', 'a', 's' };
|
262
|
-
static const symbol s_10_3[6] = { 'c', 'o', 's', 'm', 'o', 's' };
|
263
|
-
static const symbol s_10_4[5] = { 'd', 'y', 'i', 'n', 'g' };
|
264
|
-
static const symbol s_10_5[5] = { 'e', 'a', 'r', 'l', 'y' };
|
265
|
-
static const symbol s_10_6[6] = { 'g', 'e', 'n', 't', 'l', 'y' };
|
266
|
-
static const symbol s_10_7[4] = { 'h', 'o', 'w', 'e' };
|
267
|
-
static const symbol s_10_8[4] = { 'i', 'd', 'l', 'y' };
|
268
|
-
static const symbol s_10_9[5] = { 'l', 'y', 'i', 'n', 'g' };
|
269
|
-
static const symbol s_10_10[4] = { 'n', 'e', 'w', 's' };
|
270
|
-
static const symbol s_10_11[4] = { 'o', 'n', 'l', 'y' };
|
271
|
-
static const symbol s_10_12[6] = { 's', 'i', 'n', 'g', 'l', 'y' };
|
272
|
-
static const symbol s_10_13[5] = { 's', 'k', 'i', 'e', 's' };
|
273
|
-
static const symbol s_10_14[4] = { 's', 'k', 'i', 's' };
|
274
|
-
static const symbol s_10_15[3] = { 's', 'k', 'y' };
|
275
|
-
static const symbol s_10_16[5] = { 't', 'y', 'i', 'n', 'g' };
|
276
|
-
static const symbol s_10_17[4] = { 'u', 'g', 'l', 'y' };
|
277
|
-
|
278
|
-
static const struct among a_10[18] =
|
279
|
-
{
|
280
|
-
{ 5, s_10_0, -1, -1, 0},
|
281
|
-
{ 5, s_10_1, -1, -1, 0},
|
282
|
-
{ 4, s_10_2, -1, -1, 0},
|
283
|
-
{ 6, s_10_3, -1, -1, 0},
|
284
|
-
{ 5, s_10_4, -1, 3, 0},
|
285
|
-
{ 5, s_10_5, -1, 9, 0},
|
286
|
-
{ 6, s_10_6, -1, 7, 0},
|
287
|
-
{ 4, s_10_7, -1, -1, 0},
|
288
|
-
{ 4, s_10_8, -1, 6, 0},
|
289
|
-
{ 5, s_10_9, -1, 4, 0},
|
290
|
-
{ 4, s_10_10, -1, -1, 0},
|
291
|
-
{ 4, s_10_11, -1, 10, 0},
|
292
|
-
{ 6, s_10_12, -1, 11, 0},
|
293
|
-
{ 5, s_10_13, -1, 2, 0},
|
294
|
-
{ 4, s_10_14, -1, 1, 0},
|
295
|
-
{ 3, s_10_15, -1, -1, 0},
|
296
|
-
{ 5, s_10_16, -1, 5, 0},
|
297
|
-
{ 4, s_10_17, -1, 8, 0}
|
298
|
-
};
|
299
|
-
|
300
|
-
static const unsigned char g_v[] = { 17, 65, 16, 1 };
|
301
|
-
|
302
|
-
static const unsigned char g_v_WXY[] = { 1, 17, 65, 208, 1 };
|
303
|
-
|
304
|
-
static const unsigned char g_valid_LI[] = { 55, 141, 2 };
|
305
|
-
|
306
|
-
static const symbol s_0[] = { 'Y' };
|
307
|
-
static const symbol s_1[] = { 'Y' };
|
308
|
-
static const symbol s_2[] = { 's', 's' };
|
309
|
-
static const symbol s_3[] = { 'i' };
|
310
|
-
static const symbol s_4[] = { 'i', 'e' };
|
311
|
-
static const symbol s_5[] = { 'e', 'e' };
|
312
|
-
static const symbol s_6[] = { 'e' };
|
313
|
-
static const symbol s_7[] = { 'e' };
|
314
|
-
static const symbol s_8[] = { 'i' };
|
315
|
-
static const symbol s_9[] = { 't', 'i', 'o', 'n' };
|
316
|
-
static const symbol s_10[] = { 'e', 'n', 'c', 'e' };
|
317
|
-
static const symbol s_11[] = { 'a', 'n', 'c', 'e' };
|
318
|
-
static const symbol s_12[] = { 'a', 'b', 'l', 'e' };
|
319
|
-
static const symbol s_13[] = { 'e', 'n', 't' };
|
320
|
-
static const symbol s_14[] = { 'i', 'z', 'e' };
|
321
|
-
static const symbol s_15[] = { 'a', 't', 'e' };
|
322
|
-
static const symbol s_16[] = { 'a', 'l' };
|
323
|
-
static const symbol s_17[] = { 'f', 'u', 'l' };
|
324
|
-
static const symbol s_18[] = { 'o', 'u', 's' };
|
325
|
-
static const symbol s_19[] = { 'i', 'v', 'e' };
|
326
|
-
static const symbol s_20[] = { 'b', 'l', 'e' };
|
327
|
-
static const symbol s_21[] = { 'o', 'g' };
|
328
|
-
static const symbol s_22[] = { 'l', 'e', 's', 's' };
|
329
|
-
static const symbol s_23[] = { 't', 'i', 'o', 'n' };
|
330
|
-
static const symbol s_24[] = { 'a', 't', 'e' };
|
331
|
-
static const symbol s_25[] = { 'a', 'l' };
|
332
|
-
static const symbol s_26[] = { 'i', 'c' };
|
333
|
-
static const symbol s_27[] = { 's', 'k', 'i' };
|
334
|
-
static const symbol s_28[] = { 's', 'k', 'y' };
|
335
|
-
static const symbol s_29[] = { 'd', 'i', 'e' };
|
336
|
-
static const symbol s_30[] = { 'l', 'i', 'e' };
|
337
|
-
static const symbol s_31[] = { 't', 'i', 'e' };
|
338
|
-
static const symbol s_32[] = { 'i', 'd', 'l' };
|
339
|
-
static const symbol s_33[] = { 'g', 'e', 'n', 't', 'l' };
|
340
|
-
static const symbol s_34[] = { 'u', 'g', 'l', 'i' };
|
341
|
-
static const symbol s_35[] = { 'e', 'a', 'r', 'l', 'i' };
|
342
|
-
static const symbol s_36[] = { 'o', 'n', 'l', 'i' };
|
343
|
-
static const symbol s_37[] = { 's', 'i', 'n', 'g', 'l' };
|
344
|
-
static const symbol s_38[] = { 'y' };
|
345
|
-
|
346
|
-
static int r_prelude(struct SN_env * z) {
|
347
|
-
z->I[2] = 0;
|
348
|
-
{ int c1 = z->c;
|
349
|
-
z->bra = z->c;
|
350
|
-
if (z->c == z->l || z->p[z->c] != '\'') goto lab0;
|
351
|
-
z->c++;
|
352
|
-
z->ket = z->c;
|
353
|
-
{ int ret = slice_del(z);
|
354
|
-
if (ret < 0) return ret;
|
355
|
-
}
|
356
|
-
lab0:
|
357
|
-
z->c = c1;
|
358
|
-
}
|
359
|
-
{ int c2 = z->c;
|
360
|
-
z->bra = z->c;
|
361
|
-
if (z->c == z->l || z->p[z->c] != 'y') goto lab1;
|
362
|
-
z->c++;
|
363
|
-
z->ket = z->c;
|
364
|
-
{ int ret = slice_from_s(z, 1, s_0);
|
365
|
-
if (ret < 0) return ret;
|
366
|
-
}
|
367
|
-
z->I[2] = 1;
|
368
|
-
lab1:
|
369
|
-
z->c = c2;
|
370
|
-
}
|
371
|
-
{ int c3 = z->c;
|
372
|
-
while(1) {
|
373
|
-
int c4 = z->c;
|
374
|
-
while(1) {
|
375
|
-
int c5 = z->c;
|
376
|
-
if (in_grouping(z, g_v, 97, 121, 0)) goto lab4;
|
377
|
-
z->bra = z->c;
|
378
|
-
if (z->c == z->l || z->p[z->c] != 'y') goto lab4;
|
379
|
-
z->c++;
|
380
|
-
z->ket = z->c;
|
381
|
-
z->c = c5;
|
382
|
-
break;
|
383
|
-
lab4:
|
384
|
-
z->c = c5;
|
385
|
-
if (z->c >= z->l) goto lab3;
|
386
|
-
z->c++;
|
387
|
-
}
|
388
|
-
{ int ret = slice_from_s(z, 1, s_1);
|
389
|
-
if (ret < 0) return ret;
|
390
|
-
}
|
391
|
-
z->I[2] = 1;
|
392
|
-
continue;
|
393
|
-
lab3:
|
394
|
-
z->c = c4;
|
395
|
-
break;
|
396
|
-
}
|
397
|
-
z->c = c3;
|
398
|
-
}
|
399
|
-
return 1;
|
400
|
-
}
|
401
|
-
|
402
|
-
static int r_mark_regions(struct SN_env * z) {
|
403
|
-
z->I[1] = z->l;
|
404
|
-
z->I[0] = z->l;
|
405
|
-
{ int c1 = z->c;
|
406
|
-
{ int c2 = z->c;
|
407
|
-
if (z->c + 4 >= z->l || z->p[z->c + 4] >> 5 != 3 || !((2375680 >> (z->p[z->c + 4] & 0x1f)) & 1)) goto lab2;
|
408
|
-
if (!(find_among(z, a_0, 3))) goto lab2;
|
409
|
-
goto lab1;
|
410
|
-
lab2:
|
411
|
-
z->c = c2;
|
412
|
-
{
|
413
|
-
int ret = out_grouping(z, g_v, 97, 121, 1);
|
414
|
-
if (ret < 0) goto lab0;
|
415
|
-
z->c += ret;
|
416
|
-
}
|
417
|
-
{
|
418
|
-
int ret = in_grouping(z, g_v, 97, 121, 1);
|
419
|
-
if (ret < 0) goto lab0;
|
420
|
-
z->c += ret;
|
421
|
-
}
|
422
|
-
}
|
423
|
-
lab1:
|
424
|
-
z->I[1] = z->c;
|
425
|
-
{
|
426
|
-
int ret = out_grouping(z, g_v, 97, 121, 1);
|
427
|
-
if (ret < 0) goto lab0;
|
428
|
-
z->c += ret;
|
429
|
-
}
|
430
|
-
{
|
431
|
-
int ret = in_grouping(z, g_v, 97, 121, 1);
|
432
|
-
if (ret < 0) goto lab0;
|
433
|
-
z->c += ret;
|
434
|
-
}
|
435
|
-
z->I[0] = z->c;
|
436
|
-
lab0:
|
437
|
-
z->c = c1;
|
438
|
-
}
|
439
|
-
return 1;
|
440
|
-
}
|
441
|
-
|
442
|
-
static int r_shortv(struct SN_env * z) {
|
443
|
-
{ int m1 = z->l - z->c; (void)m1;
|
444
|
-
if (out_grouping_b(z, g_v_WXY, 89, 121, 0)) goto lab1;
|
445
|
-
if (in_grouping_b(z, g_v, 97, 121, 0)) goto lab1;
|
446
|
-
if (out_grouping_b(z, g_v, 97, 121, 0)) goto lab1;
|
447
|
-
goto lab0;
|
448
|
-
lab1:
|
449
|
-
z->c = z->l - m1;
|
450
|
-
if (out_grouping_b(z, g_v, 97, 121, 0)) return 0;
|
451
|
-
if (in_grouping_b(z, g_v, 97, 121, 0)) return 0;
|
452
|
-
if (z->c > z->lb) return 0;
|
453
|
-
}
|
454
|
-
lab0:
|
455
|
-
return 1;
|
456
|
-
}
|
457
|
-
|
458
|
-
static int r_R1(struct SN_env * z) {
|
459
|
-
if (!(z->I[1] <= z->c)) return 0;
|
460
|
-
return 1;
|
461
|
-
}
|
462
|
-
|
463
|
-
static int r_R2(struct SN_env * z) {
|
464
|
-
if (!(z->I[0] <= z->c)) return 0;
|
465
|
-
return 1;
|
466
|
-
}
|
467
|
-
|
468
|
-
static int r_Step_1a(struct SN_env * z) {
|
469
|
-
int among_var;
|
470
|
-
{ int m1 = z->l - z->c; (void)m1;
|
471
|
-
z->ket = z->c;
|
472
|
-
if (z->c <= z->lb || (z->p[z->c - 1] != 39 && z->p[z->c - 1] != 115)) { z->c = z->l - m1; goto lab0; }
|
473
|
-
if (!(find_among_b(z, a_1, 3))) { z->c = z->l - m1; goto lab0; }
|
474
|
-
z->bra = z->c;
|
475
|
-
{ int ret = slice_del(z);
|
476
|
-
if (ret < 0) return ret;
|
477
|
-
}
|
478
|
-
lab0:
|
479
|
-
;
|
480
|
-
}
|
481
|
-
z->ket = z->c;
|
482
|
-
if (z->c <= z->lb || (z->p[z->c - 1] != 100 && z->p[z->c - 1] != 115)) return 0;
|
483
|
-
among_var = find_among_b(z, a_2, 6);
|
484
|
-
if (!(among_var)) return 0;
|
485
|
-
z->bra = z->c;
|
486
|
-
switch (among_var) {
|
487
|
-
case 1:
|
488
|
-
{ int ret = slice_from_s(z, 2, s_2);
|
489
|
-
if (ret < 0) return ret;
|
490
|
-
}
|
491
|
-
break;
|
492
|
-
case 2:
|
493
|
-
{ int m2 = z->l - z->c; (void)m2;
|
494
|
-
z->c = z->c - 2;
|
495
|
-
if (z->c < z->lb) goto lab2;
|
496
|
-
{ int ret = slice_from_s(z, 1, s_3);
|
497
|
-
if (ret < 0) return ret;
|
498
|
-
}
|
499
|
-
goto lab1;
|
500
|
-
lab2:
|
501
|
-
z->c = z->l - m2;
|
502
|
-
{ int ret = slice_from_s(z, 2, s_4);
|
503
|
-
if (ret < 0) return ret;
|
504
|
-
}
|
505
|
-
}
|
506
|
-
lab1:
|
507
|
-
break;
|
508
|
-
case 3:
|
509
|
-
if (z->c <= z->lb) return 0;
|
510
|
-
z->c--;
|
511
|
-
{
|
512
|
-
int ret = out_grouping_b(z, g_v, 97, 121, 1);
|
513
|
-
if (ret < 0) return 0;
|
514
|
-
z->c -= ret;
|
515
|
-
}
|
516
|
-
{ int ret = slice_del(z);
|
517
|
-
if (ret < 0) return ret;
|
518
|
-
}
|
519
|
-
break;
|
520
|
-
}
|
521
|
-
return 1;
|
522
|
-
}
|
523
|
-
|
524
|
-
static int r_Step_1b(struct SN_env * z) {
|
525
|
-
int among_var;
|
526
|
-
z->ket = z->c;
|
527
|
-
if (z->c - 1 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((33554576 >> (z->p[z->c - 1] & 0x1f)) & 1)) return 0;
|
528
|
-
among_var = find_among_b(z, a_4, 6);
|
529
|
-
if (!(among_var)) return 0;
|
530
|
-
z->bra = z->c;
|
531
|
-
switch (among_var) {
|
532
|
-
case 1:
|
533
|
-
{ int ret = r_R1(z);
|
534
|
-
if (ret <= 0) return ret;
|
535
|
-
}
|
536
|
-
{ int ret = slice_from_s(z, 2, s_5);
|
537
|
-
if (ret < 0) return ret;
|
538
|
-
}
|
539
|
-
break;
|
540
|
-
case 2:
|
541
|
-
{ int m_test1 = z->l - z->c;
|
542
|
-
{
|
543
|
-
int ret = out_grouping_b(z, g_v, 97, 121, 1);
|
544
|
-
if (ret < 0) return 0;
|
545
|
-
z->c -= ret;
|
546
|
-
}
|
547
|
-
z->c = z->l - m_test1;
|
548
|
-
}
|
549
|
-
{ int ret = slice_del(z);
|
550
|
-
if (ret < 0) return ret;
|
551
|
-
}
|
552
|
-
{ int m_test2 = z->l - z->c;
|
553
|
-
if (z->c - 1 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((68514004 >> (z->p[z->c - 1] & 0x1f)) & 1)) among_var = 3; else
|
554
|
-
among_var = find_among_b(z, a_3, 13);
|
555
|
-
if (!(among_var)) return 0;
|
556
|
-
z->c = z->l - m_test2;
|
557
|
-
}
|
558
|
-
switch (among_var) {
|
559
|
-
case 1:
|
560
|
-
{ int ret;
|
561
|
-
{ int saved_c = z->c;
|
562
|
-
ret = insert_s(z, z->c, z->c, 1, s_6);
|
563
|
-
z->c = saved_c;
|
564
|
-
}
|
565
|
-
if (ret < 0) return ret;
|
566
|
-
}
|
567
|
-
break;
|
568
|
-
case 2:
|
569
|
-
z->ket = z->c;
|
570
|
-
if (z->c <= z->lb) return 0;
|
571
|
-
z->c--;
|
572
|
-
z->bra = z->c;
|
573
|
-
{ int ret = slice_del(z);
|
574
|
-
if (ret < 0) return ret;
|
575
|
-
}
|
576
|
-
break;
|
577
|
-
case 3:
|
578
|
-
if (z->c != z->I[1]) return 0;
|
579
|
-
{ int m_test3 = z->l - z->c;
|
580
|
-
{ int ret = r_shortv(z);
|
581
|
-
if (ret <= 0) return ret;
|
582
|
-
}
|
583
|
-
z->c = z->l - m_test3;
|
584
|
-
}
|
585
|
-
{ int ret;
|
586
|
-
{ int saved_c = z->c;
|
587
|
-
ret = insert_s(z, z->c, z->c, 1, s_7);
|
588
|
-
z->c = saved_c;
|
589
|
-
}
|
590
|
-
if (ret < 0) return ret;
|
591
|
-
}
|
592
|
-
break;
|
593
|
-
}
|
594
|
-
break;
|
595
|
-
}
|
596
|
-
return 1;
|
597
|
-
}
|
598
|
-
|
599
|
-
static int r_Step_1c(struct SN_env * z) {
|
600
|
-
z->ket = z->c;
|
601
|
-
{ int m1 = z->l - z->c; (void)m1;
|
602
|
-
if (z->c <= z->lb || z->p[z->c - 1] != 'y') goto lab1;
|
603
|
-
z->c--;
|
604
|
-
goto lab0;
|
605
|
-
lab1:
|
606
|
-
z->c = z->l - m1;
|
607
|
-
if (z->c <= z->lb || z->p[z->c - 1] != 'Y') return 0;
|
608
|
-
z->c--;
|
609
|
-
}
|
610
|
-
lab0:
|
611
|
-
z->bra = z->c;
|
612
|
-
if (out_grouping_b(z, g_v, 97, 121, 0)) return 0;
|
613
|
-
|
614
|
-
if (z->c > z->lb) goto lab2;
|
615
|
-
return 0;
|
616
|
-
lab2:
|
617
|
-
{ int ret = slice_from_s(z, 1, s_8);
|
618
|
-
if (ret < 0) return ret;
|
619
|
-
}
|
620
|
-
return 1;
|
621
|
-
}
|
622
|
-
|
623
|
-
static int r_Step_2(struct SN_env * z) {
|
624
|
-
int among_var;
|
625
|
-
z->ket = z->c;
|
626
|
-
if (z->c - 1 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((815616 >> (z->p[z->c - 1] & 0x1f)) & 1)) return 0;
|
627
|
-
among_var = find_among_b(z, a_5, 24);
|
628
|
-
if (!(among_var)) return 0;
|
629
|
-
z->bra = z->c;
|
630
|
-
{ int ret = r_R1(z);
|
631
|
-
if (ret <= 0) return ret;
|
632
|
-
}
|
633
|
-
switch (among_var) {
|
634
|
-
case 1:
|
635
|
-
{ int ret = slice_from_s(z, 4, s_9);
|
636
|
-
if (ret < 0) return ret;
|
637
|
-
}
|
638
|
-
break;
|
639
|
-
case 2:
|
640
|
-
{ int ret = slice_from_s(z, 4, s_10);
|
641
|
-
if (ret < 0) return ret;
|
642
|
-
}
|
643
|
-
break;
|
644
|
-
case 3:
|
645
|
-
{ int ret = slice_from_s(z, 4, s_11);
|
646
|
-
if (ret < 0) return ret;
|
647
|
-
}
|
648
|
-
break;
|
649
|
-
case 4:
|
650
|
-
{ int ret = slice_from_s(z, 4, s_12);
|
651
|
-
if (ret < 0) return ret;
|
652
|
-
}
|
653
|
-
break;
|
654
|
-
case 5:
|
655
|
-
{ int ret = slice_from_s(z, 3, s_13);
|
656
|
-
if (ret < 0) return ret;
|
657
|
-
}
|
658
|
-
break;
|
659
|
-
case 6:
|
660
|
-
{ int ret = slice_from_s(z, 3, s_14);
|
661
|
-
if (ret < 0) return ret;
|
662
|
-
}
|
663
|
-
break;
|
664
|
-
case 7:
|
665
|
-
{ int ret = slice_from_s(z, 3, s_15);
|
666
|
-
if (ret < 0) return ret;
|
667
|
-
}
|
668
|
-
break;
|
669
|
-
case 8:
|
670
|
-
{ int ret = slice_from_s(z, 2, s_16);
|
671
|
-
if (ret < 0) return ret;
|
672
|
-
}
|
673
|
-
break;
|
674
|
-
case 9:
|
675
|
-
{ int ret = slice_from_s(z, 3, s_17);
|
676
|
-
if (ret < 0) return ret;
|
677
|
-
}
|
678
|
-
break;
|
679
|
-
case 10:
|
680
|
-
{ int ret = slice_from_s(z, 3, s_18);
|
681
|
-
if (ret < 0) return ret;
|
682
|
-
}
|
683
|
-
break;
|
684
|
-
case 11:
|
685
|
-
{ int ret = slice_from_s(z, 3, s_19);
|
686
|
-
if (ret < 0) return ret;
|
687
|
-
}
|
688
|
-
break;
|
689
|
-
case 12:
|
690
|
-
{ int ret = slice_from_s(z, 3, s_20);
|
691
|
-
if (ret < 0) return ret;
|
692
|
-
}
|
693
|
-
break;
|
694
|
-
case 13:
|
695
|
-
if (z->c <= z->lb || z->p[z->c - 1] != 'l') return 0;
|
696
|
-
z->c--;
|
697
|
-
{ int ret = slice_from_s(z, 2, s_21);
|
698
|
-
if (ret < 0) return ret;
|
699
|
-
}
|
700
|
-
break;
|
701
|
-
case 14:
|
702
|
-
{ int ret = slice_from_s(z, 4, s_22);
|
703
|
-
if (ret < 0) return ret;
|
704
|
-
}
|
705
|
-
break;
|
706
|
-
case 15:
|
707
|
-
if (in_grouping_b(z, g_valid_LI, 99, 116, 0)) return 0;
|
708
|
-
{ int ret = slice_del(z);
|
709
|
-
if (ret < 0) return ret;
|
710
|
-
}
|
711
|
-
break;
|
712
|
-
}
|
713
|
-
return 1;
|
714
|
-
}
|
715
|
-
|
716
|
-
static int r_Step_3(struct SN_env * z) {
|
717
|
-
int among_var;
|
718
|
-
z->ket = z->c;
|
719
|
-
if (z->c - 2 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((528928 >> (z->p[z->c - 1] & 0x1f)) & 1)) return 0;
|
720
|
-
among_var = find_among_b(z, a_6, 9);
|
721
|
-
if (!(among_var)) return 0;
|
722
|
-
z->bra = z->c;
|
723
|
-
{ int ret = r_R1(z);
|
724
|
-
if (ret <= 0) return ret;
|
725
|
-
}
|
726
|
-
switch (among_var) {
|
727
|
-
case 1:
|
728
|
-
{ int ret = slice_from_s(z, 4, s_23);
|
729
|
-
if (ret < 0) return ret;
|
730
|
-
}
|
731
|
-
break;
|
732
|
-
case 2:
|
733
|
-
{ int ret = slice_from_s(z, 3, s_24);
|
734
|
-
if (ret < 0) return ret;
|
735
|
-
}
|
736
|
-
break;
|
737
|
-
case 3:
|
738
|
-
{ int ret = slice_from_s(z, 2, s_25);
|
739
|
-
if (ret < 0) return ret;
|
740
|
-
}
|
741
|
-
break;
|
742
|
-
case 4:
|
743
|
-
{ int ret = slice_from_s(z, 2, s_26);
|
744
|
-
if (ret < 0) return ret;
|
745
|
-
}
|
746
|
-
break;
|
747
|
-
case 5:
|
748
|
-
{ int ret = slice_del(z);
|
749
|
-
if (ret < 0) return ret;
|
750
|
-
}
|
751
|
-
break;
|
752
|
-
case 6:
|
753
|
-
{ int ret = r_R2(z);
|
754
|
-
if (ret <= 0) return ret;
|
755
|
-
}
|
756
|
-
{ int ret = slice_del(z);
|
757
|
-
if (ret < 0) return ret;
|
758
|
-
}
|
759
|
-
break;
|
760
|
-
}
|
761
|
-
return 1;
|
762
|
-
}
|
763
|
-
|
764
|
-
static int r_Step_4(struct SN_env * z) {
|
765
|
-
int among_var;
|
766
|
-
z->ket = z->c;
|
767
|
-
if (z->c - 1 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((1864232 >> (z->p[z->c - 1] & 0x1f)) & 1)) return 0;
|
768
|
-
among_var = find_among_b(z, a_7, 18);
|
769
|
-
if (!(among_var)) return 0;
|
770
|
-
z->bra = z->c;
|
771
|
-
{ int ret = r_R2(z);
|
772
|
-
if (ret <= 0) return ret;
|
773
|
-
}
|
774
|
-
switch (among_var) {
|
775
|
-
case 1:
|
776
|
-
{ int ret = slice_del(z);
|
777
|
-
if (ret < 0) return ret;
|
778
|
-
}
|
779
|
-
break;
|
780
|
-
case 2:
|
781
|
-
{ int m1 = z->l - z->c; (void)m1;
|
782
|
-
if (z->c <= z->lb || z->p[z->c - 1] != 's') goto lab1;
|
783
|
-
z->c--;
|
784
|
-
goto lab0;
|
785
|
-
lab1:
|
786
|
-
z->c = z->l - m1;
|
787
|
-
if (z->c <= z->lb || z->p[z->c - 1] != 't') return 0;
|
788
|
-
z->c--;
|
789
|
-
}
|
790
|
-
lab0:
|
791
|
-
{ int ret = slice_del(z);
|
792
|
-
if (ret < 0) return ret;
|
793
|
-
}
|
794
|
-
break;
|
795
|
-
}
|
796
|
-
return 1;
|
797
|
-
}
|
798
|
-
|
799
|
-
static int r_Step_5(struct SN_env * z) {
|
800
|
-
int among_var;
|
801
|
-
z->ket = z->c;
|
802
|
-
if (z->c <= z->lb || (z->p[z->c - 1] != 101 && z->p[z->c - 1] != 108)) return 0;
|
803
|
-
among_var = find_among_b(z, a_8, 2);
|
804
|
-
if (!(among_var)) return 0;
|
805
|
-
z->bra = z->c;
|
806
|
-
switch (among_var) {
|
807
|
-
case 1:
|
808
|
-
{ int m1 = z->l - z->c; (void)m1;
|
809
|
-
{ int ret = r_R2(z);
|
810
|
-
if (ret == 0) goto lab1;
|
811
|
-
if (ret < 0) return ret;
|
812
|
-
}
|
813
|
-
goto lab0;
|
814
|
-
lab1:
|
815
|
-
z->c = z->l - m1;
|
816
|
-
{ int ret = r_R1(z);
|
817
|
-
if (ret <= 0) return ret;
|
818
|
-
}
|
819
|
-
{ int m2 = z->l - z->c; (void)m2;
|
820
|
-
{ int ret = r_shortv(z);
|
821
|
-
if (ret == 0) goto lab2;
|
822
|
-
if (ret < 0) return ret;
|
823
|
-
}
|
824
|
-
return 0;
|
825
|
-
lab2:
|
826
|
-
z->c = z->l - m2;
|
827
|
-
}
|
828
|
-
}
|
829
|
-
lab0:
|
830
|
-
{ int ret = slice_del(z);
|
831
|
-
if (ret < 0) return ret;
|
832
|
-
}
|
833
|
-
break;
|
834
|
-
case 2:
|
835
|
-
{ int ret = r_R2(z);
|
836
|
-
if (ret <= 0) return ret;
|
837
|
-
}
|
838
|
-
if (z->c <= z->lb || z->p[z->c - 1] != 'l') return 0;
|
839
|
-
z->c--;
|
840
|
-
{ int ret = slice_del(z);
|
841
|
-
if (ret < 0) return ret;
|
842
|
-
}
|
843
|
-
break;
|
844
|
-
}
|
845
|
-
return 1;
|
846
|
-
}
|
847
|
-
|
848
|
-
static int r_exception2(struct SN_env * z) {
|
849
|
-
z->ket = z->c;
|
850
|
-
if (z->c - 5 <= z->lb || (z->p[z->c - 1] != 100 && z->p[z->c - 1] != 103)) return 0;
|
851
|
-
if (!(find_among_b(z, a_9, 8))) return 0;
|
852
|
-
z->bra = z->c;
|
853
|
-
if (z->c > z->lb) return 0;
|
854
|
-
return 1;
|
855
|
-
}
|
856
|
-
|
857
|
-
static int r_exception1(struct SN_env * z) {
|
858
|
-
int among_var;
|
859
|
-
z->bra = z->c;
|
860
|
-
if (z->c + 2 >= z->l || z->p[z->c + 2] >> 5 != 3 || !((42750482 >> (z->p[z->c + 2] & 0x1f)) & 1)) return 0;
|
861
|
-
among_var = find_among(z, a_10, 18);
|
862
|
-
if (!(among_var)) return 0;
|
863
|
-
z->ket = z->c;
|
864
|
-
if (z->c < z->l) return 0;
|
865
|
-
switch (among_var) {
|
866
|
-
case 1:
|
867
|
-
{ int ret = slice_from_s(z, 3, s_27);
|
868
|
-
if (ret < 0) return ret;
|
869
|
-
}
|
870
|
-
break;
|
871
|
-
case 2:
|
872
|
-
{ int ret = slice_from_s(z, 3, s_28);
|
873
|
-
if (ret < 0) return ret;
|
874
|
-
}
|
875
|
-
break;
|
876
|
-
case 3:
|
877
|
-
{ int ret = slice_from_s(z, 3, s_29);
|
878
|
-
if (ret < 0) return ret;
|
879
|
-
}
|
880
|
-
break;
|
881
|
-
case 4:
|
882
|
-
{ int ret = slice_from_s(z, 3, s_30);
|
883
|
-
if (ret < 0) return ret;
|
884
|
-
}
|
885
|
-
break;
|
886
|
-
case 5:
|
887
|
-
{ int ret = slice_from_s(z, 3, s_31);
|
888
|
-
if (ret < 0) return ret;
|
889
|
-
}
|
890
|
-
break;
|
891
|
-
case 6:
|
892
|
-
{ int ret = slice_from_s(z, 3, s_32);
|
893
|
-
if (ret < 0) return ret;
|
894
|
-
}
|
895
|
-
break;
|
896
|
-
case 7:
|
897
|
-
{ int ret = slice_from_s(z, 5, s_33);
|
898
|
-
if (ret < 0) return ret;
|
899
|
-
}
|
900
|
-
break;
|
901
|
-
case 8:
|
902
|
-
{ int ret = slice_from_s(z, 4, s_34);
|
903
|
-
if (ret < 0) return ret;
|
904
|
-
}
|
905
|
-
break;
|
906
|
-
case 9:
|
907
|
-
{ int ret = slice_from_s(z, 5, s_35);
|
908
|
-
if (ret < 0) return ret;
|
909
|
-
}
|
910
|
-
break;
|
911
|
-
case 10:
|
912
|
-
{ int ret = slice_from_s(z, 4, s_36);
|
913
|
-
if (ret < 0) return ret;
|
914
|
-
}
|
915
|
-
break;
|
916
|
-
case 11:
|
917
|
-
{ int ret = slice_from_s(z, 5, s_37);
|
918
|
-
if (ret < 0) return ret;
|
919
|
-
}
|
920
|
-
break;
|
921
|
-
}
|
922
|
-
return 1;
|
923
|
-
}
|
924
|
-
|
925
|
-
static int r_postlude(struct SN_env * z) {
|
926
|
-
if (!(z->I[2])) return 0;
|
927
|
-
while(1) {
|
928
|
-
int c1 = z->c;
|
929
|
-
while(1) {
|
930
|
-
int c2 = z->c;
|
931
|
-
z->bra = z->c;
|
932
|
-
if (z->c == z->l || z->p[z->c] != 'Y') goto lab1;
|
933
|
-
z->c++;
|
934
|
-
z->ket = z->c;
|
935
|
-
z->c = c2;
|
936
|
-
break;
|
937
|
-
lab1:
|
938
|
-
z->c = c2;
|
939
|
-
if (z->c >= z->l) goto lab0;
|
940
|
-
z->c++;
|
941
|
-
}
|
942
|
-
{ int ret = slice_from_s(z, 1, s_38);
|
943
|
-
if (ret < 0) return ret;
|
944
|
-
}
|
945
|
-
continue;
|
946
|
-
lab0:
|
947
|
-
z->c = c1;
|
948
|
-
break;
|
949
|
-
}
|
950
|
-
return 1;
|
951
|
-
}
|
952
|
-
|
953
|
-
extern int english_ISO_8859_1_stem(struct SN_env * z) {
|
954
|
-
{ int c1 = z->c;
|
955
|
-
{ int ret = r_exception1(z);
|
956
|
-
if (ret == 0) goto lab1;
|
957
|
-
if (ret < 0) return ret;
|
958
|
-
}
|
959
|
-
goto lab0;
|
960
|
-
lab1:
|
961
|
-
z->c = c1;
|
962
|
-
{ int c2 = z->c;
|
963
|
-
z->c = z->c + 3;
|
964
|
-
if (z->c > z->l) goto lab3;
|
965
|
-
goto lab2;
|
966
|
-
lab3:
|
967
|
-
z->c = c2;
|
968
|
-
}
|
969
|
-
goto lab0;
|
970
|
-
lab2:
|
971
|
-
z->c = c1;
|
972
|
-
|
973
|
-
{ int ret = r_prelude(z);
|
974
|
-
if (ret < 0) return ret;
|
975
|
-
}
|
976
|
-
|
977
|
-
{ int ret = r_mark_regions(z);
|
978
|
-
if (ret < 0) return ret;
|
979
|
-
}
|
980
|
-
z->lb = z->c; z->c = z->l;
|
981
|
-
|
982
|
-
{ int m3 = z->l - z->c; (void)m3;
|
983
|
-
{ int ret = r_Step_1a(z);
|
984
|
-
if (ret < 0) return ret;
|
985
|
-
}
|
986
|
-
z->c = z->l - m3;
|
987
|
-
}
|
988
|
-
{ int m4 = z->l - z->c; (void)m4;
|
989
|
-
{ int ret = r_exception2(z);
|
990
|
-
if (ret == 0) goto lab5;
|
991
|
-
if (ret < 0) return ret;
|
992
|
-
}
|
993
|
-
goto lab4;
|
994
|
-
lab5:
|
995
|
-
z->c = z->l - m4;
|
996
|
-
{ int m5 = z->l - z->c; (void)m5;
|
997
|
-
{ int ret = r_Step_1b(z);
|
998
|
-
if (ret < 0) return ret;
|
999
|
-
}
|
1000
|
-
z->c = z->l - m5;
|
1001
|
-
}
|
1002
|
-
{ int m6 = z->l - z->c; (void)m6;
|
1003
|
-
{ int ret = r_Step_1c(z);
|
1004
|
-
if (ret < 0) return ret;
|
1005
|
-
}
|
1006
|
-
z->c = z->l - m6;
|
1007
|
-
}
|
1008
|
-
{ int m7 = z->l - z->c; (void)m7;
|
1009
|
-
{ int ret = r_Step_2(z);
|
1010
|
-
if (ret < 0) return ret;
|
1011
|
-
}
|
1012
|
-
z->c = z->l - m7;
|
1013
|
-
}
|
1014
|
-
{ int m8 = z->l - z->c; (void)m8;
|
1015
|
-
{ int ret = r_Step_3(z);
|
1016
|
-
if (ret < 0) return ret;
|
1017
|
-
}
|
1018
|
-
z->c = z->l - m8;
|
1019
|
-
}
|
1020
|
-
{ int m9 = z->l - z->c; (void)m9;
|
1021
|
-
{ int ret = r_Step_4(z);
|
1022
|
-
if (ret < 0) return ret;
|
1023
|
-
}
|
1024
|
-
z->c = z->l - m9;
|
1025
|
-
}
|
1026
|
-
{ int m10 = z->l - z->c; (void)m10;
|
1027
|
-
{ int ret = r_Step_5(z);
|
1028
|
-
if (ret < 0) return ret;
|
1029
|
-
}
|
1030
|
-
z->c = z->l - m10;
|
1031
|
-
}
|
1032
|
-
}
|
1033
|
-
lab4:
|
1034
|
-
z->c = z->lb;
|
1035
|
-
{ int c11 = z->c;
|
1036
|
-
{ int ret = r_postlude(z);
|
1037
|
-
if (ret < 0) return ret;
|
1038
|
-
}
|
1039
|
-
z->c = c11;
|
1040
|
-
}
|
1041
|
-
}
|
1042
|
-
lab0:
|
1043
|
-
return 1;
|
1044
|
-
}
|
1045
|
-
|
1046
|
-
extern struct SN_env * english_ISO_8859_1_create_env(void) { return SN_create_env(0, 3); }
|
1047
|
-
|
1048
|
-
extern void english_ISO_8859_1_close_env(struct SN_env * z) { SN_close_env(z, 0); }
|
1049
|
-
|