isomorfeus-ferret 0.12.4 → 0.12.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +612 -612
- data/README.md +77 -48
- data/ext/isomorfeus_ferret_ext/bm_hash.c +9 -6
- data/ext/isomorfeus_ferret_ext/bm_micro_string.c +4 -2
- data/ext/isomorfeus_ferret_ext/brotli_common_constants.c +15 -0
- data/ext/isomorfeus_ferret_ext/brotli_common_constants.h +200 -0
- data/ext/isomorfeus_ferret_ext/brotli_common_context.c +156 -0
- data/ext/isomorfeus_ferret_ext/brotli_common_context.h +113 -0
- data/ext/isomorfeus_ferret_ext/brotli_common_dictionary.c +5914 -0
- data/ext/isomorfeus_ferret_ext/brotli_common_dictionary.h +64 -0
- data/ext/isomorfeus_ferret_ext/brotli_common_platform.c +22 -0
- data/ext/isomorfeus_ferret_ext/brotli_common_platform.h +594 -0
- data/ext/isomorfeus_ferret_ext/brotli_common_transform.c +291 -0
- data/ext/isomorfeus_ferret_ext/brotli_common_transform.h +85 -0
- data/ext/isomorfeus_ferret_ext/brotli_common_version.h +26 -0
- data/ext/isomorfeus_ferret_ext/brotli_dec_bit_reader.c +76 -0
- data/ext/isomorfeus_ferret_ext/brotli_dec_bit_reader.h +351 -0
- data/ext/isomorfeus_ferret_ext/brotli_dec_decode.c +2608 -0
- data/ext/isomorfeus_ferret_ext/brotli_dec_huffman.c +339 -0
- data/ext/isomorfeus_ferret_ext/brotli_dec_huffman.h +121 -0
- data/ext/isomorfeus_ferret_ext/brotli_dec_prefix.h +732 -0
- data/ext/isomorfeus_ferret_ext/brotli_dec_state.c +159 -0
- data/ext/isomorfeus_ferret_ext/brotli_dec_state.h +365 -0
- data/ext/isomorfeus_ferret_ext/brotli_decode.h +344 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_backward_references.c +145 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_backward_references.h +39 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_backward_references_hq.c +843 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_backward_references_hq.h +95 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_backward_references_inc.h +163 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_bit_cost.c +35 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_bit_cost.h +63 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_bit_cost_inc.h +127 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_block_encoder_inc.h +34 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_block_splitter.c +194 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_block_splitter.h +51 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_block_splitter_inc.h +440 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_brotli_bit_stream.c +1314 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_brotli_bit_stream.h +84 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_cluster.c +56 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_cluster.h +48 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_cluster_inc.h +320 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_command.c +28 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_command.h +190 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_compress_fragment.c +790 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_compress_fragment.h +61 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_compress_fragment_two_pass.c +645 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_compress_fragment_two_pass.h +54 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_dictionary_hash.c +1846 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_dictionary_hash.h +25 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_encode.c +1927 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_encoder_dict.c +33 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_encoder_dict.h +43 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_entropy_encode.c +503 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_entropy_encode.h +122 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_entropy_encode_static.h +539 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_fast_log.c +105 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_fast_log.h +66 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_find_match_length.h +79 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_hash.h +488 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_hash_composite_inc.h +125 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_hash_forgetful_chain_inc.h +293 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_hash_longest_match64_inc.h +267 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_hash_longest_match_inc.h +262 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_hash_longest_match_quickly_inc.h +266 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_hash_rolling_inc.h +212 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_hash_to_binary_tree_inc.h +329 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_histogram.c +100 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_histogram.h +63 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_histogram_inc.h +51 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_literal_cost.c +175 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_literal_cost.h +30 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_memory.c +170 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_memory.h +114 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_metablock.c +663 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_metablock.h +105 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_metablock_inc.h +183 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_params.h +46 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_prefix.h +53 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_quality.h +165 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_ringbuffer.h +167 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_static_dict.c +486 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_static_dict.h +40 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_static_dict_lut.h +5864 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_utf8_util.c +85 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_utf8_util.h +32 -0
- data/ext/isomorfeus_ferret_ext/brotli_enc_write_bits.h +87 -0
- data/ext/isomorfeus_ferret_ext/brotli_encode.h +448 -0
- data/ext/isomorfeus_ferret_ext/brotli_port.h +288 -0
- data/ext/isomorfeus_ferret_ext/brotli_types.h +83 -0
- data/ext/isomorfeus_ferret_ext/frb_index.c +35 -4
- data/ext/isomorfeus_ferret_ext/frb_store.c +34 -5
- data/ext/isomorfeus_ferret_ext/frt_document.h +1 -0
- data/ext/isomorfeus_ferret_ext/frt_fs_store.c +1 -0
- data/ext/isomorfeus_ferret_ext/frt_index.c +174 -25
- data/ext/isomorfeus_ferret_ext/frt_index.h +6 -3
- data/ext/isomorfeus_ferret_ext/frt_posh.h +11 -19
- data/ext/isomorfeus_ferret_ext/frt_q_parser.c +1844 -1911
- data/ext/isomorfeus_ferret_ext/frt_q_phrase.c +12 -15
- data/ext/isomorfeus_ferret_ext/frt_ram_store.c +1 -0
- data/ext/isomorfeus_ferret_ext/frt_scanner.c +1 -0
- data/ext/isomorfeus_ferret_ext/frt_scanner_mb.c +1 -0
- data/ext/isomorfeus_ferret_ext/frt_scanner_utf8.c +1 -0
- data/ext/isomorfeus_ferret_ext/frt_search.h +1 -1
- data/ext/isomorfeus_ferret_ext/libstemmer.c +14 -11
- data/ext/isomorfeus_ferret_ext/libstemmer.h +4 -9
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_basque.c +1167 -0
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_basque.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_catalan.c +1433 -0
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_catalan.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_danish.c +120 -143
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_danish.h +1 -2
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_dutch.c +217 -237
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_dutch.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_english.c +377 -432
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_english.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_finnish.c +298 -342
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_finnish.h +1 -2
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_french.c +530 -524
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_french.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_german.c +201 -214
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_german.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_hungarian.c +1 -1
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_indonesian.c +394 -0
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_indonesian.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_irish.c +457 -0
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_irish.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_italian.c +396 -439
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_italian.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_norwegian.c +104 -128
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_norwegian.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_porter.c +242 -273
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_porter.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_portuguese.c +406 -461
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_portuguese.h +1 -2
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_spanish.c +405 -456
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_spanish.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_swedish.c +108 -126
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_swedish.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_hungarian.c +849 -0
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_hungarian.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_romanian.c +373 -405
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_romanian.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_KOI8_R_russian.c +288 -305
- data/ext/isomorfeus_ferret_ext/stem_KOI8_R_russian.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_arabic.c +1651 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_arabic.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_armenian.c +546 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_armenian.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_basque.c +1171 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_basque.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_catalan.c +1436 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_catalan.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_danish.c +121 -141
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_danish.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_dutch.c +221 -241
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_dutch.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_english.c +381 -431
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_english.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_finnish.c +300 -345
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_finnish.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_french.c +518 -511
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_french.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_german.c +201 -209
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_german.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_greek.c +3660 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_greek.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_hindi.c +309 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_hindi.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_hungarian.c +306 -671
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_hungarian.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_indonesian.c +394 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_indonesian.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_irish.c +457 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_irish.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_italian.c +400 -442
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_italian.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_lithuanian.c +824 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_lithuanian.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_nepali.c +408 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_nepali.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_norwegian.c +105 -127
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_norwegian.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_porter.c +245 -276
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_porter.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_portuguese.c +409 -464
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_portuguese.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_romanian.c +376 -408
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_romanian.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_russian.c +272 -287
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_russian.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_serbian.c +6530 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_serbian.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_spanish.c +407 -458
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_spanish.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_swedish.c +110 -125
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_swedish.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_tamil.c +1865 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_tamil.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_turkish.c +698 -806
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_turkish.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_yiddish.c +1220 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_yiddish.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_api.c +1 -9
- data/ext/isomorfeus_ferret_ext/stem_api.h +1 -3
- data/ext/isomorfeus_ferret_ext/stem_header.h +30 -26
- data/ext/isomorfeus_ferret_ext/stem_modules.h +113 -26
- data/ext/isomorfeus_ferret_ext/stem_modules.txt +18 -5
- data/ext/isomorfeus_ferret_ext/stem_utilities.c +167 -132
- data/ext/isomorfeus_ferret_ext/test.c +7 -1
- data/ext/isomorfeus_ferret_ext/test_fields.c +57 -45
- data/ext/isomorfeus_ferret_ext/test_index.c +4 -1
- data/ext/isomorfeus_ferret_ext/test_search.c +0 -1
- data/lib/isomorfeus/ferret/version.rb +1 -1
- metadata +125 -5
- data/ext/isomorfeus_ferret_ext/q_parser.y +0 -1366
@@ -1,4 +1,4 @@
|
|
1
|
-
/*
|
1
|
+
/* Generated by Snowball 2.2.0 - https://snowballstem.org/ */
|
2
2
|
|
3
3
|
#include "stem_header.h"
|
4
4
|
|
@@ -30,15 +30,15 @@ static const symbol s_0_8[8] = { 0xD0, 0xB8, 0xD0, 0xB2, 0xD1, 0x88, 0xD0, 0xB8
|
|
30
30
|
|
31
31
|
static const struct among a_0[9] =
|
32
32
|
{
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
33
|
+
{ 10, s_0_0, -1, 1, 0},
|
34
|
+
{ 12, s_0_1, 0, 2, 0},
|
35
|
+
{ 12, s_0_2, 0, 2, 0},
|
36
|
+
{ 2, s_0_3, -1, 1, 0},
|
37
|
+
{ 4, s_0_4, 3, 2, 0},
|
38
|
+
{ 4, s_0_5, 3, 2, 0},
|
39
|
+
{ 6, s_0_6, -1, 1, 0},
|
40
|
+
{ 8, s_0_7, 6, 2, 0},
|
41
|
+
{ 8, s_0_8, 6, 2, 0}
|
42
42
|
};
|
43
43
|
|
44
44
|
static const symbol s_1_0[6] = { 0xD0, 0xB5, 0xD0, 0xBC, 0xD1, 0x83 };
|
@@ -70,32 +70,32 @@ static const symbol s_1_25[6] = { 0xD0, 0xBE, 0xD0, 0xB3, 0xD0, 0xBE };
|
|
70
70
|
|
71
71
|
static const struct among a_1[26] =
|
72
72
|
{
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
73
|
+
{ 6, s_1_0, -1, 1, 0},
|
74
|
+
{ 6, s_1_1, -1, 1, 0},
|
75
|
+
{ 4, s_1_2, -1, 1, 0},
|
76
|
+
{ 4, s_1_3, -1, 1, 0},
|
77
|
+
{ 4, s_1_4, -1, 1, 0},
|
78
|
+
{ 4, s_1_5, -1, 1, 0},
|
79
|
+
{ 4, s_1_6, -1, 1, 0},
|
80
|
+
{ 4, s_1_7, -1, 1, 0},
|
81
|
+
{ 4, s_1_8, -1, 1, 0},
|
82
|
+
{ 4, s_1_9, -1, 1, 0},
|
83
|
+
{ 4, s_1_10, -1, 1, 0},
|
84
|
+
{ 4, s_1_11, -1, 1, 0},
|
85
|
+
{ 4, s_1_12, -1, 1, 0},
|
86
|
+
{ 4, s_1_13, -1, 1, 0},
|
87
|
+
{ 6, s_1_14, -1, 1, 0},
|
88
|
+
{ 6, s_1_15, -1, 1, 0},
|
89
|
+
{ 4, s_1_16, -1, 1, 0},
|
90
|
+
{ 4, s_1_17, -1, 1, 0},
|
91
|
+
{ 4, s_1_18, -1, 1, 0},
|
92
|
+
{ 4, s_1_19, -1, 1, 0},
|
93
|
+
{ 4, s_1_20, -1, 1, 0},
|
94
|
+
{ 4, s_1_21, -1, 1, 0},
|
95
|
+
{ 4, s_1_22, -1, 1, 0},
|
96
|
+
{ 4, s_1_23, -1, 1, 0},
|
97
|
+
{ 6, s_1_24, -1, 1, 0},
|
98
|
+
{ 6, s_1_25, -1, 1, 0}
|
99
99
|
};
|
100
100
|
|
101
101
|
static const symbol s_2_0[4] = { 0xD0, 0xB2, 0xD1, 0x88 };
|
@@ -109,14 +109,14 @@ static const symbol s_2_7[4] = { 0xD0, 0xBD, 0xD0, 0xBD };
|
|
109
109
|
|
110
110
|
static const struct among a_2[8] =
|
111
111
|
{
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
112
|
+
{ 4, s_2_0, -1, 1, 0},
|
113
|
+
{ 6, s_2_1, 0, 2, 0},
|
114
|
+
{ 6, s_2_2, 0, 2, 0},
|
115
|
+
{ 2, s_2_3, -1, 1, 0},
|
116
|
+
{ 4, s_2_4, 3, 1, 0},
|
117
|
+
{ 6, s_2_5, 4, 2, 0},
|
118
|
+
{ 4, s_2_6, -1, 1, 0},
|
119
|
+
{ 4, s_2_7, -1, 1, 0}
|
120
120
|
};
|
121
121
|
|
122
122
|
static const symbol s_3_0[4] = { 0xD1, 0x81, 0xD1, 0x8C };
|
@@ -124,8 +124,8 @@ static const symbol s_3_1[4] = { 0xD1, 0x81, 0xD1, 0x8F };
|
|
124
124
|
|
125
125
|
static const struct among a_3[2] =
|
126
126
|
{
|
127
|
-
|
128
|
-
|
127
|
+
{ 4, s_3_0, -1, 1, 0},
|
128
|
+
{ 4, s_3_1, -1, 1, 0}
|
129
129
|
};
|
130
130
|
|
131
131
|
static const symbol s_4_0[4] = { 0xD1, 0x8B, 0xD1, 0x82 };
|
@@ -177,52 +177,52 @@ static const symbol s_4_45[6] = { 0xD0, 0xBD, 0xD0, 0xBD, 0xD0, 0xBE };
|
|
177
177
|
|
178
178
|
static const struct among a_4[46] =
|
179
179
|
{
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
180
|
+
{ 4, s_4_0, -1, 2, 0},
|
181
|
+
{ 4, s_4_1, -1, 1, 0},
|
182
|
+
{ 6, s_4_2, 1, 2, 0},
|
183
|
+
{ 4, s_4_3, -1, 2, 0},
|
184
|
+
{ 4, s_4_4, -1, 1, 0},
|
185
|
+
{ 6, s_4_5, 4, 2, 0},
|
186
|
+
{ 4, s_4_6, -1, 2, 0},
|
187
|
+
{ 4, s_4_7, -1, 1, 0},
|
188
|
+
{ 6, s_4_8, 7, 2, 0},
|
189
|
+
{ 4, s_4_9, -1, 1, 0},
|
190
|
+
{ 6, s_4_10, 9, 2, 0},
|
191
|
+
{ 6, s_4_11, 9, 2, 0},
|
192
|
+
{ 6, s_4_12, -1, 1, 0},
|
193
|
+
{ 6, s_4_13, -1, 2, 0},
|
194
|
+
{ 2, s_4_14, -1, 2, 0},
|
195
|
+
{ 4, s_4_15, 14, 2, 0},
|
196
|
+
{ 4, s_4_16, -1, 1, 0},
|
197
|
+
{ 6, s_4_17, 16, 2, 0},
|
198
|
+
{ 6, s_4_18, 16, 2, 0},
|
199
|
+
{ 4, s_4_19, -1, 1, 0},
|
200
|
+
{ 6, s_4_20, 19, 2, 0},
|
201
|
+
{ 6, s_4_21, -1, 1, 0},
|
202
|
+
{ 6, s_4_22, -1, 2, 0},
|
203
|
+
{ 6, s_4_23, -1, 1, 0},
|
204
|
+
{ 8, s_4_24, 23, 2, 0},
|
205
|
+
{ 8, s_4_25, 23, 2, 0},
|
206
|
+
{ 4, s_4_26, -1, 1, 0},
|
207
|
+
{ 6, s_4_27, 26, 2, 0},
|
208
|
+
{ 6, s_4_28, 26, 2, 0},
|
209
|
+
{ 2, s_4_29, -1, 1, 0},
|
210
|
+
{ 4, s_4_30, 29, 2, 0},
|
211
|
+
{ 4, s_4_31, 29, 2, 0},
|
212
|
+
{ 2, s_4_32, -1, 1, 0},
|
213
|
+
{ 4, s_4_33, 32, 2, 0},
|
214
|
+
{ 4, s_4_34, 32, 2, 0},
|
215
|
+
{ 4, s_4_35, -1, 2, 0},
|
216
|
+
{ 4, s_4_36, -1, 1, 0},
|
217
|
+
{ 4, s_4_37, -1, 2, 0},
|
218
|
+
{ 2, s_4_38, -1, 1, 0},
|
219
|
+
{ 4, s_4_39, 38, 2, 0},
|
220
|
+
{ 4, s_4_40, -1, 1, 0},
|
221
|
+
{ 6, s_4_41, 40, 2, 0},
|
222
|
+
{ 6, s_4_42, 40, 2, 0},
|
223
|
+
{ 4, s_4_43, -1, 1, 0},
|
224
|
+
{ 6, s_4_44, 43, 2, 0},
|
225
|
+
{ 6, s_4_45, 43, 1, 0}
|
226
226
|
};
|
227
227
|
|
228
228
|
static const symbol s_5_0[2] = { 0xD1, 0x83 };
|
@@ -264,42 +264,42 @@ static const symbol s_5_35[2] = { 0xD0, 0xBE };
|
|
264
264
|
|
265
265
|
static const struct among a_5[36] =
|
266
266
|
{
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
267
|
+
{ 2, s_5_0, -1, 1, 0},
|
268
|
+
{ 4, s_5_1, -1, 1, 0},
|
269
|
+
{ 6, s_5_2, 1, 1, 0},
|
270
|
+
{ 4, s_5_3, -1, 1, 0},
|
271
|
+
{ 2, s_5_4, -1, 1, 0},
|
272
|
+
{ 2, s_5_5, -1, 1, 0},
|
273
|
+
{ 2, s_5_6, -1, 1, 0},
|
274
|
+
{ 4, s_5_7, 6, 1, 0},
|
275
|
+
{ 4, s_5_8, 6, 1, 0},
|
276
|
+
{ 2, s_5_9, -1, 1, 0},
|
277
|
+
{ 4, s_5_10, 9, 1, 0},
|
278
|
+
{ 4, s_5_11, 9, 1, 0},
|
279
|
+
{ 2, s_5_12, -1, 1, 0},
|
280
|
+
{ 4, s_5_13, -1, 1, 0},
|
281
|
+
{ 4, s_5_14, -1, 1, 0},
|
282
|
+
{ 2, s_5_15, -1, 1, 0},
|
283
|
+
{ 4, s_5_16, 15, 1, 0},
|
284
|
+
{ 4, s_5_17, 15, 1, 0},
|
285
|
+
{ 2, s_5_18, -1, 1, 0},
|
286
|
+
{ 4, s_5_19, 18, 1, 0},
|
287
|
+
{ 4, s_5_20, 18, 1, 0},
|
288
|
+
{ 6, s_5_21, 18, 1, 0},
|
289
|
+
{ 8, s_5_22, 21, 1, 0},
|
290
|
+
{ 6, s_5_23, 18, 1, 0},
|
291
|
+
{ 2, s_5_24, -1, 1, 0},
|
292
|
+
{ 4, s_5_25, 24, 1, 0},
|
293
|
+
{ 6, s_5_26, 25, 1, 0},
|
294
|
+
{ 4, s_5_27, 24, 1, 0},
|
295
|
+
{ 4, s_5_28, 24, 1, 0},
|
296
|
+
{ 4, s_5_29, -1, 1, 0},
|
297
|
+
{ 6, s_5_30, 29, 1, 0},
|
298
|
+
{ 4, s_5_31, -1, 1, 0},
|
299
|
+
{ 4, s_5_32, -1, 1, 0},
|
300
|
+
{ 6, s_5_33, 32, 1, 0},
|
301
|
+
{ 4, s_5_34, -1, 1, 0},
|
302
|
+
{ 2, s_5_35, -1, 1, 0}
|
303
303
|
};
|
304
304
|
|
305
305
|
static const symbol s_6_0[6] = { 0xD0, 0xBE, 0xD1, 0x81, 0xD1, 0x82 };
|
@@ -307,8 +307,8 @@ static const symbol s_6_1[8] = { 0xD0, 0xBE, 0xD1, 0x81, 0xD1, 0x82, 0xD1, 0x8C
|
|
307
307
|
|
308
308
|
static const struct among a_6[2] =
|
309
309
|
{
|
310
|
-
|
311
|
-
|
310
|
+
{ 6, s_6_0, -1, 1, 0},
|
311
|
+
{ 8, s_6_1, -1, 1, 0}
|
312
312
|
};
|
313
313
|
|
314
314
|
static const symbol s_7_0[6] = { 0xD0, 0xB5, 0xD0, 0xB9, 0xD1, 0x88 };
|
@@ -318,10 +318,10 @@ static const symbol s_7_3[2] = { 0xD0, 0xBD };
|
|
318
318
|
|
319
319
|
static const struct among a_7[4] =
|
320
320
|
{
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
321
|
+
{ 6, s_7_0, -1, 1, 0},
|
322
|
+
{ 2, s_7_1, -1, 3, 0},
|
323
|
+
{ 8, s_7_2, -1, 1, 0},
|
324
|
+
{ 2, s_7_3, -1, 2, 0}
|
325
325
|
};
|
326
326
|
|
327
327
|
static const unsigned char g_v[] = { 33, 65, 8, 232 };
|
@@ -335,34 +335,36 @@ static const symbol s_5[] = { 0xD1, 0x8F };
|
|
335
335
|
static const symbol s_6[] = { 0xD0, 0xBD };
|
336
336
|
static const symbol s_7[] = { 0xD0, 0xBD };
|
337
337
|
static const symbol s_8[] = { 0xD0, 0xBD };
|
338
|
-
static const symbol s_9[] = {
|
338
|
+
static const symbol s_9[] = { 0xD1, 0x91 };
|
339
|
+
static const symbol s_10[] = { 0xD0, 0xB5 };
|
340
|
+
static const symbol s_11[] = { 0xD0, 0xB8 };
|
339
341
|
|
340
342
|
static int r_mark_regions(struct SN_env * z) {
|
341
|
-
z->I[0] = z->l;
|
342
343
|
z->I[1] = z->l;
|
343
|
-
|
344
|
-
|
344
|
+
z->I[0] = z->l;
|
345
|
+
{ int c1 = z->c;
|
346
|
+
{
|
345
347
|
int ret = out_grouping_U(z, g_v, 1072, 1103, 1);
|
346
348
|
if (ret < 0) goto lab0;
|
347
349
|
z->c += ret;
|
348
350
|
}
|
349
|
-
z->I[
|
350
|
-
{
|
351
|
+
z->I[1] = z->c;
|
352
|
+
{
|
351
353
|
int ret = in_grouping_U(z, g_v, 1072, 1103, 1);
|
352
354
|
if (ret < 0) goto lab0;
|
353
355
|
z->c += ret;
|
354
356
|
}
|
355
|
-
{
|
357
|
+
{
|
356
358
|
int ret = out_grouping_U(z, g_v, 1072, 1103, 1);
|
357
359
|
if (ret < 0) goto lab0;
|
358
360
|
z->c += ret;
|
359
361
|
}
|
360
|
-
{
|
362
|
+
{
|
361
363
|
int ret = in_grouping_U(z, g_v, 1072, 1103, 1);
|
362
364
|
if (ret < 0) goto lab0;
|
363
365
|
z->c += ret;
|
364
366
|
}
|
365
|
-
z->I[
|
367
|
+
z->I[0] = z->c;
|
366
368
|
lab0:
|
367
369
|
z->c = c1;
|
368
370
|
}
|
@@ -370,20 +372,19 @@ static int r_mark_regions(struct SN_env * z) {
|
|
370
372
|
}
|
371
373
|
|
372
374
|
static int r_R2(struct SN_env * z) {
|
373
|
-
if (!(z->I[
|
375
|
+
if (!(z->I[0] <= z->c)) return 0;
|
374
376
|
return 1;
|
375
377
|
}
|
376
378
|
|
377
379
|
static int r_perfective_gerund(struct SN_env * z) {
|
378
380
|
int among_var;
|
379
|
-
z->ket = z->c;
|
380
|
-
among_var = find_among_b(z, a_0, 9);
|
381
|
+
z->ket = z->c;
|
382
|
+
among_var = find_among_b(z, a_0, 9);
|
381
383
|
if (!(among_var)) return 0;
|
382
|
-
z->bra = z->c;
|
383
|
-
switch(among_var) {
|
384
|
-
case 0: return 0;
|
384
|
+
z->bra = z->c;
|
385
|
+
switch (among_var) {
|
385
386
|
case 1:
|
386
|
-
{ int m1 = z->l - z->c; (void)m1;
|
387
|
+
{ int m1 = z->l - z->c; (void)m1;
|
387
388
|
if (!(eq_s_b(z, 2, s_0))) goto lab1;
|
388
389
|
goto lab0;
|
389
390
|
lab1:
|
@@ -391,12 +392,12 @@ static int r_perfective_gerund(struct SN_env * z) {
|
|
391
392
|
if (!(eq_s_b(z, 2, s_1))) return 0;
|
392
393
|
}
|
393
394
|
lab0:
|
394
|
-
{ int ret = slice_del(z);
|
395
|
+
{ int ret = slice_del(z);
|
395
396
|
if (ret < 0) return ret;
|
396
397
|
}
|
397
398
|
break;
|
398
399
|
case 2:
|
399
|
-
{ int ret = slice_del(z);
|
400
|
+
{ int ret = slice_del(z);
|
400
401
|
if (ret < 0) return ret;
|
401
402
|
}
|
402
403
|
break;
|
@@ -405,18 +406,11 @@ static int r_perfective_gerund(struct SN_env * z) {
|
|
405
406
|
}
|
406
407
|
|
407
408
|
static int r_adjective(struct SN_env * z) {
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
switch(among_var) {
|
414
|
-
case 0: return 0;
|
415
|
-
case 1:
|
416
|
-
{ int ret = slice_del(z); /* delete, line 97 */
|
417
|
-
if (ret < 0) return ret;
|
418
|
-
}
|
419
|
-
break;
|
409
|
+
z->ket = z->c;
|
410
|
+
if (!(find_among_b(z, a_1, 26))) return 0;
|
411
|
+
z->bra = z->c;
|
412
|
+
{ int ret = slice_del(z);
|
413
|
+
if (ret < 0) return ret;
|
420
414
|
}
|
421
415
|
return 1;
|
422
416
|
}
|
@@ -424,31 +418,29 @@ static int r_adjective(struct SN_env * z) {
|
|
424
418
|
static int r_adjectival(struct SN_env * z) {
|
425
419
|
int among_var;
|
426
420
|
{ int ret = r_adjective(z);
|
427
|
-
if (ret
|
428
|
-
if (ret < 0) return ret;
|
421
|
+
if (ret <= 0) return ret;
|
429
422
|
}
|
430
|
-
{ int
|
431
|
-
z->ket = z->c;
|
432
|
-
among_var = find_among_b(z, a_2, 8);
|
433
|
-
if (!(among_var)) { z->c = z->l -
|
434
|
-
z->bra = z->c;
|
435
|
-
switch(among_var) {
|
436
|
-
case 0: { z->c = z->l - m_keep; goto lab0; }
|
423
|
+
{ int m1 = z->l - z->c; (void)m1;
|
424
|
+
z->ket = z->c;
|
425
|
+
among_var = find_among_b(z, a_2, 8);
|
426
|
+
if (!(among_var)) { z->c = z->l - m1; goto lab0; }
|
427
|
+
z->bra = z->c;
|
428
|
+
switch (among_var) {
|
437
429
|
case 1:
|
438
|
-
{ int
|
430
|
+
{ int m2 = z->l - z->c; (void)m2;
|
439
431
|
if (!(eq_s_b(z, 2, s_2))) goto lab2;
|
440
432
|
goto lab1;
|
441
433
|
lab2:
|
442
|
-
z->c = z->l -
|
443
|
-
if (!(eq_s_b(z, 2, s_3))) { z->c = z->l -
|
434
|
+
z->c = z->l - m2;
|
435
|
+
if (!(eq_s_b(z, 2, s_3))) { z->c = z->l - m1; goto lab0; }
|
444
436
|
}
|
445
437
|
lab1:
|
446
|
-
{ int ret = slice_del(z);
|
438
|
+
{ int ret = slice_del(z);
|
447
439
|
if (ret < 0) return ret;
|
448
440
|
}
|
449
441
|
break;
|
450
442
|
case 2:
|
451
|
-
{ int ret = slice_del(z);
|
443
|
+
{ int ret = slice_del(z);
|
452
444
|
if (ret < 0) return ret;
|
453
445
|
}
|
454
446
|
break;
|
@@ -460,33 +452,25 @@ static int r_adjectival(struct SN_env * z) {
|
|
460
452
|
}
|
461
453
|
|
462
454
|
static int r_reflexive(struct SN_env * z) {
|
463
|
-
|
464
|
-
z->ket = z->c; /* [, line 129 */
|
455
|
+
z->ket = z->c;
|
465
456
|
if (z->c - 3 <= z->lb || (z->p[z->c - 1] != 140 && z->p[z->c - 1] != 143)) return 0;
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
case 0: return 0;
|
471
|
-
case 1:
|
472
|
-
{ int ret = slice_del(z); /* delete, line 132 */
|
473
|
-
if (ret < 0) return ret;
|
474
|
-
}
|
475
|
-
break;
|
457
|
+
if (!(find_among_b(z, a_3, 2))) return 0;
|
458
|
+
z->bra = z->c;
|
459
|
+
{ int ret = slice_del(z);
|
460
|
+
if (ret < 0) return ret;
|
476
461
|
}
|
477
462
|
return 1;
|
478
463
|
}
|
479
464
|
|
480
465
|
static int r_verb(struct SN_env * z) {
|
481
466
|
int among_var;
|
482
|
-
z->ket = z->c;
|
483
|
-
among_var = find_among_b(z, a_4, 46);
|
467
|
+
z->ket = z->c;
|
468
|
+
among_var = find_among_b(z, a_4, 46);
|
484
469
|
if (!(among_var)) return 0;
|
485
|
-
z->bra = z->c;
|
486
|
-
switch(among_var) {
|
487
|
-
case 0: return 0;
|
470
|
+
z->bra = z->c;
|
471
|
+
switch (among_var) {
|
488
472
|
case 1:
|
489
|
-
{ int m1 = z->l - z->c; (void)m1;
|
473
|
+
{ int m1 = z->l - z->c; (void)m1;
|
490
474
|
if (!(eq_s_b(z, 2, s_4))) goto lab1;
|
491
475
|
goto lab0;
|
492
476
|
lab1:
|
@@ -494,12 +478,12 @@ static int r_verb(struct SN_env * z) {
|
|
494
478
|
if (!(eq_s_b(z, 2, s_5))) return 0;
|
495
479
|
}
|
496
480
|
lab0:
|
497
|
-
{ int ret = slice_del(z);
|
481
|
+
{ int ret = slice_del(z);
|
498
482
|
if (ret < 0) return ret;
|
499
483
|
}
|
500
484
|
break;
|
501
485
|
case 2:
|
502
|
-
{ int ret = slice_del(z);
|
486
|
+
{ int ret = slice_del(z);
|
503
487
|
if (ret < 0) return ret;
|
504
488
|
}
|
505
489
|
break;
|
@@ -508,72 +492,56 @@ static int r_verb(struct SN_env * z) {
|
|
508
492
|
}
|
509
493
|
|
510
494
|
static int r_noun(struct SN_env * z) {
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
switch(among_var) {
|
517
|
-
case 0: return 0;
|
518
|
-
case 1:
|
519
|
-
{ int ret = slice_del(z); /* delete, line 167 */
|
520
|
-
if (ret < 0) return ret;
|
521
|
-
}
|
522
|
-
break;
|
495
|
+
z->ket = z->c;
|
496
|
+
if (!(find_among_b(z, a_5, 36))) return 0;
|
497
|
+
z->bra = z->c;
|
498
|
+
{ int ret = slice_del(z);
|
499
|
+
if (ret < 0) return ret;
|
523
500
|
}
|
524
501
|
return 1;
|
525
502
|
}
|
526
503
|
|
527
504
|
static int r_derivational(struct SN_env * z) {
|
528
|
-
|
529
|
-
z->ket = z->c; /* [, line 176 */
|
505
|
+
z->ket = z->c;
|
530
506
|
if (z->c - 5 <= z->lb || (z->p[z->c - 1] != 130 && z->p[z->c - 1] != 140)) return 0;
|
531
|
-
|
532
|
-
|
533
|
-
z->bra = z->c; /* ], line 176 */
|
507
|
+
if (!(find_among_b(z, a_6, 2))) return 0;
|
508
|
+
z->bra = z->c;
|
534
509
|
{ int ret = r_R2(z);
|
535
|
-
if (ret
|
536
|
-
if (ret < 0) return ret;
|
510
|
+
if (ret <= 0) return ret;
|
537
511
|
}
|
538
|
-
|
539
|
-
|
540
|
-
case 1:
|
541
|
-
{ int ret = slice_del(z); /* delete, line 179 */
|
542
|
-
if (ret < 0) return ret;
|
543
|
-
}
|
544
|
-
break;
|
512
|
+
{ int ret = slice_del(z);
|
513
|
+
if (ret < 0) return ret;
|
545
514
|
}
|
546
515
|
return 1;
|
547
516
|
}
|
548
517
|
|
549
518
|
static int r_tidy_up(struct SN_env * z) {
|
550
519
|
int among_var;
|
551
|
-
z->ket = z->c;
|
552
|
-
among_var = find_among_b(z, a_7, 4);
|
520
|
+
z->ket = z->c;
|
521
|
+
among_var = find_among_b(z, a_7, 4);
|
553
522
|
if (!(among_var)) return 0;
|
554
|
-
z->bra = z->c;
|
555
|
-
switch(among_var) {
|
556
|
-
case 0: return 0;
|
523
|
+
z->bra = z->c;
|
524
|
+
switch (among_var) {
|
557
525
|
case 1:
|
558
|
-
{ int ret = slice_del(z);
|
526
|
+
{ int ret = slice_del(z);
|
559
527
|
if (ret < 0) return ret;
|
560
528
|
}
|
561
|
-
z->ket = z->c;
|
529
|
+
z->ket = z->c;
|
562
530
|
if (!(eq_s_b(z, 2, s_6))) return 0;
|
563
|
-
z->bra = z->c;
|
531
|
+
z->bra = z->c;
|
564
532
|
if (!(eq_s_b(z, 2, s_7))) return 0;
|
565
|
-
{ int ret = slice_del(z);
|
533
|
+
{ int ret = slice_del(z);
|
566
534
|
if (ret < 0) return ret;
|
567
535
|
}
|
568
536
|
break;
|
569
537
|
case 2:
|
570
538
|
if (!(eq_s_b(z, 2, s_8))) return 0;
|
571
|
-
{ int ret = slice_del(z);
|
539
|
+
{ int ret = slice_del(z);
|
572
540
|
if (ret < 0) return ret;
|
573
541
|
}
|
574
542
|
break;
|
575
543
|
case 3:
|
576
|
-
{ int ret = slice_del(z);
|
544
|
+
{ int ret = slice_del(z);
|
577
545
|
if (ret < 0) return ret;
|
578
546
|
}
|
579
547
|
break;
|
@@ -582,99 +550,116 @@ static int r_tidy_up(struct SN_env * z) {
|
|
582
550
|
}
|
583
551
|
|
584
552
|
extern int russian_UTF_8_stem(struct SN_env * z) {
|
585
|
-
{ int c1 = z->c;
|
586
|
-
|
587
|
-
|
588
|
-
|
553
|
+
{ int c1 = z->c;
|
554
|
+
while(1) {
|
555
|
+
int c2 = z->c;
|
556
|
+
while(1) {
|
557
|
+
int c3 = z->c;
|
558
|
+
z->bra = z->c;
|
559
|
+
if (!(eq_s(z, 2, s_9))) goto lab2;
|
560
|
+
z->ket = z->c;
|
561
|
+
z->c = c3;
|
562
|
+
break;
|
563
|
+
lab2:
|
564
|
+
z->c = c3;
|
565
|
+
{ int ret = skip_utf8(z->p, z->c, z->l, 1);
|
566
|
+
if (ret < 0) goto lab1;
|
567
|
+
z->c = ret;
|
568
|
+
}
|
569
|
+
}
|
570
|
+
{ int ret = slice_from_s(z, 2, s_10);
|
571
|
+
if (ret < 0) return ret;
|
572
|
+
}
|
573
|
+
continue;
|
574
|
+
lab1:
|
575
|
+
z->c = c2;
|
576
|
+
break;
|
589
577
|
}
|
590
|
-
lab0:
|
591
578
|
z->c = c1;
|
592
579
|
}
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
580
|
+
|
581
|
+
{ int ret = r_mark_regions(z);
|
582
|
+
if (ret < 0) return ret;
|
583
|
+
}
|
584
|
+
z->lb = z->c; z->c = z->l;
|
585
|
+
|
586
|
+
|
587
|
+
{ int mlimit4;
|
588
|
+
if (z->c < z->I[1]) return 0;
|
589
|
+
mlimit4 = z->lb; z->lb = z->I[1];
|
590
|
+
{ int m5 = z->l - z->c; (void)m5;
|
591
|
+
{ int m6 = z->l - z->c; (void)m6;
|
603
592
|
{ int ret = r_perfective_gerund(z);
|
604
|
-
if (ret == 0) goto
|
593
|
+
if (ret == 0) goto lab5;
|
605
594
|
if (ret < 0) return ret;
|
606
595
|
}
|
607
|
-
goto
|
608
|
-
|
609
|
-
z->c = z->l -
|
610
|
-
{ int
|
596
|
+
goto lab4;
|
597
|
+
lab5:
|
598
|
+
z->c = z->l - m6;
|
599
|
+
{ int m7 = z->l - z->c; (void)m7;
|
611
600
|
{ int ret = r_reflexive(z);
|
612
|
-
if (ret == 0) { z->c = z->l -
|
601
|
+
if (ret == 0) { z->c = z->l - m7; goto lab6; }
|
613
602
|
if (ret < 0) return ret;
|
614
603
|
}
|
615
|
-
|
604
|
+
lab6:
|
616
605
|
;
|
617
606
|
}
|
618
|
-
{ int
|
607
|
+
{ int m8 = z->l - z->c; (void)m8;
|
619
608
|
{ int ret = r_adjectival(z);
|
620
|
-
if (ret == 0) goto
|
609
|
+
if (ret == 0) goto lab8;
|
621
610
|
if (ret < 0) return ret;
|
622
611
|
}
|
623
|
-
goto
|
624
|
-
|
625
|
-
z->c = z->l -
|
612
|
+
goto lab7;
|
613
|
+
lab8:
|
614
|
+
z->c = z->l - m8;
|
626
615
|
{ int ret = r_verb(z);
|
627
|
-
if (ret == 0) goto
|
616
|
+
if (ret == 0) goto lab9;
|
628
617
|
if (ret < 0) return ret;
|
629
618
|
}
|
630
|
-
goto
|
631
|
-
|
632
|
-
z->c = z->l -
|
619
|
+
goto lab7;
|
620
|
+
lab9:
|
621
|
+
z->c = z->l - m8;
|
633
622
|
{ int ret = r_noun(z);
|
634
|
-
if (ret == 0) goto
|
623
|
+
if (ret == 0) goto lab3;
|
635
624
|
if (ret < 0) return ret;
|
636
625
|
}
|
637
626
|
}
|
638
|
-
|
627
|
+
lab7:
|
639
628
|
;
|
640
629
|
}
|
641
|
-
|
642
|
-
|
643
|
-
z->c = z->l -
|
630
|
+
lab4:
|
631
|
+
lab3:
|
632
|
+
z->c = z->l - m5;
|
644
633
|
}
|
645
|
-
{ int
|
646
|
-
z->ket = z->c;
|
647
|
-
if (!(eq_s_b(z, 2,
|
648
|
-
z->bra = z->c;
|
649
|
-
{ int ret = slice_del(z);
|
634
|
+
{ int m9 = z->l - z->c; (void)m9;
|
635
|
+
z->ket = z->c;
|
636
|
+
if (!(eq_s_b(z, 2, s_11))) { z->c = z->l - m9; goto lab10; }
|
637
|
+
z->bra = z->c;
|
638
|
+
{ int ret = slice_del(z);
|
650
639
|
if (ret < 0) return ret;
|
651
640
|
}
|
652
|
-
|
641
|
+
lab10:
|
653
642
|
;
|
654
643
|
}
|
655
|
-
{ int
|
644
|
+
{ int m10 = z->l - z->c; (void)m10;
|
656
645
|
{ int ret = r_derivational(z);
|
657
|
-
if (ret == 0) goto lab9; /* call derivational, line 212 */
|
658
646
|
if (ret < 0) return ret;
|
659
647
|
}
|
660
|
-
|
661
|
-
z->c = z->l - m6;
|
648
|
+
z->c = z->l - m10;
|
662
649
|
}
|
663
|
-
{ int
|
650
|
+
{ int m11 = z->l - z->c; (void)m11;
|
664
651
|
{ int ret = r_tidy_up(z);
|
665
|
-
if (ret == 0) goto lab10; /* call tidy_up, line 213 */
|
666
652
|
if (ret < 0) return ret;
|
667
653
|
}
|
668
|
-
|
669
|
-
z->c = z->l - m7;
|
654
|
+
z->c = z->l - m11;
|
670
655
|
}
|
671
|
-
z->lb =
|
656
|
+
z->lb = mlimit4;
|
672
657
|
}
|
673
658
|
z->c = z->lb;
|
674
659
|
return 1;
|
675
660
|
}
|
676
661
|
|
677
|
-
extern struct SN_env * russian_UTF_8_create_env(void) { return SN_create_env(0, 2
|
662
|
+
extern struct SN_env * russian_UTF_8_create_env(void) { return SN_create_env(0, 2); }
|
678
663
|
|
679
664
|
extern void russian_UTF_8_close_env(struct SN_env * z) { SN_close_env(z, 0); }
|
680
665
|
|