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
@@ -0,0 +1,457 @@
|
|
1
|
+
/* Generated by Snowball 2.2.0 - https://snowballstem.org/ */
|
2
|
+
|
3
|
+
#include "stem_header.h"
|
4
|
+
|
5
|
+
extern int irish_ISO_8859_1_stem(struct SN_env * z);
|
6
|
+
|
7
|
+
static int r_verb_sfx(struct SN_env * z);
|
8
|
+
static int r_deriv(struct SN_env * z);
|
9
|
+
static int r_noun_sfx(struct SN_env * z);
|
10
|
+
static int r_mark_regions(struct SN_env * z);
|
11
|
+
static int r_initial_morph(struct SN_env * z);
|
12
|
+
static int r_RV(struct SN_env * z);
|
13
|
+
static int r_R2(struct SN_env * z);
|
14
|
+
static int r_R1(struct SN_env * z);
|
15
|
+
|
16
|
+
extern struct SN_env * irish_ISO_8859_1_create_env(void);
|
17
|
+
extern void irish_ISO_8859_1_close_env(struct SN_env * z);
|
18
|
+
|
19
|
+
static const symbol s_0_0[2] = { 'b', '\'' };
|
20
|
+
static const symbol s_0_1[2] = { 'b', 'h' };
|
21
|
+
static const symbol s_0_2[3] = { 'b', 'h', 'f' };
|
22
|
+
static const symbol s_0_3[2] = { 'b', 'p' };
|
23
|
+
static const symbol s_0_4[2] = { 'c', 'h' };
|
24
|
+
static const symbol s_0_5[2] = { 'd', '\'' };
|
25
|
+
static const symbol s_0_6[4] = { 'd', '\'', 'f', 'h' };
|
26
|
+
static const symbol s_0_7[2] = { 'd', 'h' };
|
27
|
+
static const symbol s_0_8[2] = { 'd', 't' };
|
28
|
+
static const symbol s_0_9[2] = { 'f', 'h' };
|
29
|
+
static const symbol s_0_10[2] = { 'g', 'c' };
|
30
|
+
static const symbol s_0_11[2] = { 'g', 'h' };
|
31
|
+
static const symbol s_0_12[2] = { 'h', '-' };
|
32
|
+
static const symbol s_0_13[2] = { 'm', '\'' };
|
33
|
+
static const symbol s_0_14[2] = { 'm', 'b' };
|
34
|
+
static const symbol s_0_15[2] = { 'm', 'h' };
|
35
|
+
static const symbol s_0_16[2] = { 'n', '-' };
|
36
|
+
static const symbol s_0_17[2] = { 'n', 'd' };
|
37
|
+
static const symbol s_0_18[2] = { 'n', 'g' };
|
38
|
+
static const symbol s_0_19[2] = { 'p', 'h' };
|
39
|
+
static const symbol s_0_20[2] = { 's', 'h' };
|
40
|
+
static const symbol s_0_21[2] = { 't', '-' };
|
41
|
+
static const symbol s_0_22[2] = { 't', 'h' };
|
42
|
+
static const symbol s_0_23[2] = { 't', 's' };
|
43
|
+
|
44
|
+
static const struct among a_0[24] =
|
45
|
+
{
|
46
|
+
{ 2, s_0_0, -1, 1, 0},
|
47
|
+
{ 2, s_0_1, -1, 4, 0},
|
48
|
+
{ 3, s_0_2, 1, 2, 0},
|
49
|
+
{ 2, s_0_3, -1, 8, 0},
|
50
|
+
{ 2, s_0_4, -1, 5, 0},
|
51
|
+
{ 2, s_0_5, -1, 1, 0},
|
52
|
+
{ 4, s_0_6, 5, 2, 0},
|
53
|
+
{ 2, s_0_7, -1, 6, 0},
|
54
|
+
{ 2, s_0_8, -1, 9, 0},
|
55
|
+
{ 2, s_0_9, -1, 2, 0},
|
56
|
+
{ 2, s_0_10, -1, 5, 0},
|
57
|
+
{ 2, s_0_11, -1, 7, 0},
|
58
|
+
{ 2, s_0_12, -1, 1, 0},
|
59
|
+
{ 2, s_0_13, -1, 1, 0},
|
60
|
+
{ 2, s_0_14, -1, 4, 0},
|
61
|
+
{ 2, s_0_15, -1, 10, 0},
|
62
|
+
{ 2, s_0_16, -1, 1, 0},
|
63
|
+
{ 2, s_0_17, -1, 6, 0},
|
64
|
+
{ 2, s_0_18, -1, 7, 0},
|
65
|
+
{ 2, s_0_19, -1, 8, 0},
|
66
|
+
{ 2, s_0_20, -1, 3, 0},
|
67
|
+
{ 2, s_0_21, -1, 1, 0},
|
68
|
+
{ 2, s_0_22, -1, 9, 0},
|
69
|
+
{ 2, s_0_23, -1, 3, 0}
|
70
|
+
};
|
71
|
+
|
72
|
+
static const symbol s_1_0[6] = { 0xED, 'o', 'c', 'h', 't', 'a' };
|
73
|
+
static const symbol s_1_1[7] = { 'a', 0xED, 'o', 'c', 'h', 't', 'a' };
|
74
|
+
static const symbol s_1_2[3] = { 'i', 'r', 'e' };
|
75
|
+
static const symbol s_1_3[4] = { 'a', 'i', 'r', 'e' };
|
76
|
+
static const symbol s_1_4[3] = { 'a', 'b', 'h' };
|
77
|
+
static const symbol s_1_5[4] = { 'e', 'a', 'b', 'h' };
|
78
|
+
static const symbol s_1_6[3] = { 'i', 'b', 'h' };
|
79
|
+
static const symbol s_1_7[4] = { 'a', 'i', 'b', 'h' };
|
80
|
+
static const symbol s_1_8[3] = { 'a', 'm', 'h' };
|
81
|
+
static const symbol s_1_9[4] = { 'e', 'a', 'm', 'h' };
|
82
|
+
static const symbol s_1_10[3] = { 'i', 'm', 'h' };
|
83
|
+
static const symbol s_1_11[4] = { 'a', 'i', 'm', 'h' };
|
84
|
+
static const symbol s_1_12[5] = { 0xED, 'o', 'c', 'h', 't' };
|
85
|
+
static const symbol s_1_13[6] = { 'a', 0xED, 'o', 'c', 'h', 't' };
|
86
|
+
static const symbol s_1_14[3] = { 'i', 'r', 0xED };
|
87
|
+
static const symbol s_1_15[4] = { 'a', 'i', 'r', 0xED };
|
88
|
+
|
89
|
+
static const struct among a_1[16] =
|
90
|
+
{
|
91
|
+
{ 6, s_1_0, -1, 1, 0},
|
92
|
+
{ 7, s_1_1, 0, 1, 0},
|
93
|
+
{ 3, s_1_2, -1, 2, 0},
|
94
|
+
{ 4, s_1_3, 2, 2, 0},
|
95
|
+
{ 3, s_1_4, -1, 1, 0},
|
96
|
+
{ 4, s_1_5, 4, 1, 0},
|
97
|
+
{ 3, s_1_6, -1, 1, 0},
|
98
|
+
{ 4, s_1_7, 6, 1, 0},
|
99
|
+
{ 3, s_1_8, -1, 1, 0},
|
100
|
+
{ 4, s_1_9, 8, 1, 0},
|
101
|
+
{ 3, s_1_10, -1, 1, 0},
|
102
|
+
{ 4, s_1_11, 10, 1, 0},
|
103
|
+
{ 5, s_1_12, -1, 1, 0},
|
104
|
+
{ 6, s_1_13, 12, 1, 0},
|
105
|
+
{ 3, s_1_14, -1, 2, 0},
|
106
|
+
{ 4, s_1_15, 14, 2, 0}
|
107
|
+
};
|
108
|
+
|
109
|
+
static const symbol s_2_0[8] = { 0xF3, 'i', 'd', 'e', 'a', 'c', 'h', 'a' };
|
110
|
+
static const symbol s_2_1[7] = { 'p', 'a', 't', 'a', 'c', 'h', 'a' };
|
111
|
+
static const symbol s_2_2[5] = { 'a', 'c', 'h', 't', 'a' };
|
112
|
+
static const symbol s_2_3[8] = { 'a', 'r', 'c', 'a', 'c', 'h', 't', 'a' };
|
113
|
+
static const symbol s_2_4[6] = { 'e', 'a', 'c', 'h', 't', 'a' };
|
114
|
+
static const symbol s_2_5[11] = { 'g', 'r', 'a', 'f', 'a', 0xED, 'o', 'c', 'h', 't', 'a' };
|
115
|
+
static const symbol s_2_6[5] = { 'p', 'a', 'i', 't', 'e' };
|
116
|
+
static const symbol s_2_7[3] = { 'a', 'c', 'h' };
|
117
|
+
static const symbol s_2_8[4] = { 'e', 'a', 'c', 'h' };
|
118
|
+
static const symbol s_2_9[7] = { 0xF3, 'i', 'd', 'e', 'a', 'c', 'h' };
|
119
|
+
static const symbol s_2_10[7] = { 'g', 'i', 'n', 'e', 'a', 'c', 'h' };
|
120
|
+
static const symbol s_2_11[6] = { 'p', 'a', 't', 'a', 'c', 'h' };
|
121
|
+
static const symbol s_2_12[9] = { 'g', 'r', 'a', 'f', 'a', 0xED, 'o', 'c', 'h' };
|
122
|
+
static const symbol s_2_13[7] = { 'p', 'a', 't', 'a', 'i', 'g', 'h' };
|
123
|
+
static const symbol s_2_14[6] = { 0xF3, 'i', 'd', 'i', 'g', 'h' };
|
124
|
+
static const symbol s_2_15[7] = { 'a', 'c', 'h', 't', 0xFA, 'i', 'l' };
|
125
|
+
static const symbol s_2_16[8] = { 'e', 'a', 'c', 'h', 't', 0xFA, 'i', 'l' };
|
126
|
+
static const symbol s_2_17[6] = { 'g', 'i', 'n', 'e', 'a', 's' };
|
127
|
+
static const symbol s_2_18[5] = { 'g', 'i', 'n', 'i', 's' };
|
128
|
+
static const symbol s_2_19[4] = { 'a', 'c', 'h', 't' };
|
129
|
+
static const symbol s_2_20[7] = { 'a', 'r', 'c', 'a', 'c', 'h', 't' };
|
130
|
+
static const symbol s_2_21[5] = { 'e', 'a', 'c', 'h', 't' };
|
131
|
+
static const symbol s_2_22[10] = { 'g', 'r', 'a', 'f', 'a', 0xED, 'o', 'c', 'h', 't' };
|
132
|
+
static const symbol s_2_23[9] = { 'a', 'r', 'c', 'a', 'c', 'h', 't', 'a', 0xED };
|
133
|
+
static const symbol s_2_24[12] = { 'g', 'r', 'a', 'f', 'a', 0xED, 'o', 'c', 'h', 't', 'a', 0xED };
|
134
|
+
|
135
|
+
static const struct among a_2[25] =
|
136
|
+
{
|
137
|
+
{ 8, s_2_0, -1, 6, 0},
|
138
|
+
{ 7, s_2_1, -1, 5, 0},
|
139
|
+
{ 5, s_2_2, -1, 1, 0},
|
140
|
+
{ 8, s_2_3, 2, 2, 0},
|
141
|
+
{ 6, s_2_4, 2, 1, 0},
|
142
|
+
{ 11, s_2_5, -1, 4, 0},
|
143
|
+
{ 5, s_2_6, -1, 5, 0},
|
144
|
+
{ 3, s_2_7, -1, 1, 0},
|
145
|
+
{ 4, s_2_8, 7, 1, 0},
|
146
|
+
{ 7, s_2_9, 8, 6, 0},
|
147
|
+
{ 7, s_2_10, 8, 3, 0},
|
148
|
+
{ 6, s_2_11, 7, 5, 0},
|
149
|
+
{ 9, s_2_12, -1, 4, 0},
|
150
|
+
{ 7, s_2_13, -1, 5, 0},
|
151
|
+
{ 6, s_2_14, -1, 6, 0},
|
152
|
+
{ 7, s_2_15, -1, 1, 0},
|
153
|
+
{ 8, s_2_16, 15, 1, 0},
|
154
|
+
{ 6, s_2_17, -1, 3, 0},
|
155
|
+
{ 5, s_2_18, -1, 3, 0},
|
156
|
+
{ 4, s_2_19, -1, 1, 0},
|
157
|
+
{ 7, s_2_20, 19, 2, 0},
|
158
|
+
{ 5, s_2_21, 19, 1, 0},
|
159
|
+
{ 10, s_2_22, -1, 4, 0},
|
160
|
+
{ 9, s_2_23, -1, 2, 0},
|
161
|
+
{ 12, s_2_24, -1, 4, 0}
|
162
|
+
};
|
163
|
+
|
164
|
+
static const symbol s_3_0[4] = { 'i', 'm', 'i', 'd' };
|
165
|
+
static const symbol s_3_1[5] = { 'a', 'i', 'm', 'i', 'd' };
|
166
|
+
static const symbol s_3_2[4] = { 0xED, 'm', 'i', 'd' };
|
167
|
+
static const symbol s_3_3[5] = { 'a', 0xED, 'm', 'i', 'd' };
|
168
|
+
static const symbol s_3_4[3] = { 'a', 'd', 'h' };
|
169
|
+
static const symbol s_3_5[4] = { 'e', 'a', 'd', 'h' };
|
170
|
+
static const symbol s_3_6[5] = { 'f', 'a', 'i', 'd', 'h' };
|
171
|
+
static const symbol s_3_7[4] = { 'f', 'i', 'd', 'h' };
|
172
|
+
static const symbol s_3_8[3] = { 0xE1, 'i', 'l' };
|
173
|
+
static const symbol s_3_9[3] = { 'a', 'i', 'n' };
|
174
|
+
static const symbol s_3_10[4] = { 't', 'e', 'a', 'r' };
|
175
|
+
static const symbol s_3_11[3] = { 't', 'a', 'r' };
|
176
|
+
|
177
|
+
static const struct among a_3[12] =
|
178
|
+
{
|
179
|
+
{ 4, s_3_0, -1, 1, 0},
|
180
|
+
{ 5, s_3_1, 0, 1, 0},
|
181
|
+
{ 4, s_3_2, -1, 1, 0},
|
182
|
+
{ 5, s_3_3, 2, 1, 0},
|
183
|
+
{ 3, s_3_4, -1, 2, 0},
|
184
|
+
{ 4, s_3_5, 4, 2, 0},
|
185
|
+
{ 5, s_3_6, -1, 1, 0},
|
186
|
+
{ 4, s_3_7, -1, 1, 0},
|
187
|
+
{ 3, s_3_8, -1, 2, 0},
|
188
|
+
{ 3, s_3_9, -1, 2, 0},
|
189
|
+
{ 4, s_3_10, -1, 2, 0},
|
190
|
+
{ 3, s_3_11, -1, 2, 0}
|
191
|
+
};
|
192
|
+
|
193
|
+
static const unsigned char g_v[] = { 17, 65, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 17, 4, 2 };
|
194
|
+
|
195
|
+
static const symbol s_0[] = { 'f' };
|
196
|
+
static const symbol s_1[] = { 's' };
|
197
|
+
static const symbol s_2[] = { 'b' };
|
198
|
+
static const symbol s_3[] = { 'c' };
|
199
|
+
static const symbol s_4[] = { 'd' };
|
200
|
+
static const symbol s_5[] = { 'g' };
|
201
|
+
static const symbol s_6[] = { 'p' };
|
202
|
+
static const symbol s_7[] = { 't' };
|
203
|
+
static const symbol s_8[] = { 'm' };
|
204
|
+
static const symbol s_9[] = { 'a', 'r', 'c' };
|
205
|
+
static const symbol s_10[] = { 'g', 'i', 'n' };
|
206
|
+
static const symbol s_11[] = { 'g', 'r', 'a', 'f' };
|
207
|
+
static const symbol s_12[] = { 'p', 'a', 'i', 't', 'e' };
|
208
|
+
static const symbol s_13[] = { 0xF3, 'i', 'd' };
|
209
|
+
|
210
|
+
static int r_mark_regions(struct SN_env * z) {
|
211
|
+
z->I[2] = z->l;
|
212
|
+
z->I[1] = z->l;
|
213
|
+
z->I[0] = z->l;
|
214
|
+
{ int c1 = z->c;
|
215
|
+
{
|
216
|
+
int ret = out_grouping(z, g_v, 97, 250, 1);
|
217
|
+
if (ret < 0) goto lab0;
|
218
|
+
z->c += ret;
|
219
|
+
}
|
220
|
+
z->I[2] = z->c;
|
221
|
+
{
|
222
|
+
int ret = in_grouping(z, g_v, 97, 250, 1);
|
223
|
+
if (ret < 0) goto lab0;
|
224
|
+
z->c += ret;
|
225
|
+
}
|
226
|
+
z->I[1] = z->c;
|
227
|
+
{
|
228
|
+
int ret = out_grouping(z, g_v, 97, 250, 1);
|
229
|
+
if (ret < 0) goto lab0;
|
230
|
+
z->c += ret;
|
231
|
+
}
|
232
|
+
{
|
233
|
+
int ret = in_grouping(z, g_v, 97, 250, 1);
|
234
|
+
if (ret < 0) goto lab0;
|
235
|
+
z->c += ret;
|
236
|
+
}
|
237
|
+
z->I[0] = z->c;
|
238
|
+
lab0:
|
239
|
+
z->c = c1;
|
240
|
+
}
|
241
|
+
return 1;
|
242
|
+
}
|
243
|
+
|
244
|
+
static int r_initial_morph(struct SN_env * z) {
|
245
|
+
int among_var;
|
246
|
+
z->bra = z->c;
|
247
|
+
among_var = find_among(z, a_0, 24);
|
248
|
+
if (!(among_var)) return 0;
|
249
|
+
z->ket = z->c;
|
250
|
+
switch (among_var) {
|
251
|
+
case 1:
|
252
|
+
{ int ret = slice_del(z);
|
253
|
+
if (ret < 0) return ret;
|
254
|
+
}
|
255
|
+
break;
|
256
|
+
case 2:
|
257
|
+
{ int ret = slice_from_s(z, 1, s_0);
|
258
|
+
if (ret < 0) return ret;
|
259
|
+
}
|
260
|
+
break;
|
261
|
+
case 3:
|
262
|
+
{ int ret = slice_from_s(z, 1, s_1);
|
263
|
+
if (ret < 0) return ret;
|
264
|
+
}
|
265
|
+
break;
|
266
|
+
case 4:
|
267
|
+
{ int ret = slice_from_s(z, 1, s_2);
|
268
|
+
if (ret < 0) return ret;
|
269
|
+
}
|
270
|
+
break;
|
271
|
+
case 5:
|
272
|
+
{ int ret = slice_from_s(z, 1, s_3);
|
273
|
+
if (ret < 0) return ret;
|
274
|
+
}
|
275
|
+
break;
|
276
|
+
case 6:
|
277
|
+
{ int ret = slice_from_s(z, 1, s_4);
|
278
|
+
if (ret < 0) return ret;
|
279
|
+
}
|
280
|
+
break;
|
281
|
+
case 7:
|
282
|
+
{ int ret = slice_from_s(z, 1, s_5);
|
283
|
+
if (ret < 0) return ret;
|
284
|
+
}
|
285
|
+
break;
|
286
|
+
case 8:
|
287
|
+
{ int ret = slice_from_s(z, 1, s_6);
|
288
|
+
if (ret < 0) return ret;
|
289
|
+
}
|
290
|
+
break;
|
291
|
+
case 9:
|
292
|
+
{ int ret = slice_from_s(z, 1, s_7);
|
293
|
+
if (ret < 0) return ret;
|
294
|
+
}
|
295
|
+
break;
|
296
|
+
case 10:
|
297
|
+
{ int ret = slice_from_s(z, 1, s_8);
|
298
|
+
if (ret < 0) return ret;
|
299
|
+
}
|
300
|
+
break;
|
301
|
+
}
|
302
|
+
return 1;
|
303
|
+
}
|
304
|
+
|
305
|
+
static int r_RV(struct SN_env * z) {
|
306
|
+
if (!(z->I[2] <= z->c)) return 0;
|
307
|
+
return 1;
|
308
|
+
}
|
309
|
+
|
310
|
+
static int r_R1(struct SN_env * z) {
|
311
|
+
if (!(z->I[1] <= z->c)) return 0;
|
312
|
+
return 1;
|
313
|
+
}
|
314
|
+
|
315
|
+
static int r_R2(struct SN_env * z) {
|
316
|
+
if (!(z->I[0] <= z->c)) return 0;
|
317
|
+
return 1;
|
318
|
+
}
|
319
|
+
|
320
|
+
static int r_noun_sfx(struct SN_env * z) {
|
321
|
+
int among_var;
|
322
|
+
z->ket = z->c;
|
323
|
+
among_var = find_among_b(z, a_1, 16);
|
324
|
+
if (!(among_var)) return 0;
|
325
|
+
z->bra = z->c;
|
326
|
+
switch (among_var) {
|
327
|
+
case 1:
|
328
|
+
{ int ret = r_R1(z);
|
329
|
+
if (ret <= 0) return ret;
|
330
|
+
}
|
331
|
+
{ int ret = slice_del(z);
|
332
|
+
if (ret < 0) return ret;
|
333
|
+
}
|
334
|
+
break;
|
335
|
+
case 2:
|
336
|
+
{ int ret = r_R2(z);
|
337
|
+
if (ret <= 0) return ret;
|
338
|
+
}
|
339
|
+
{ int ret = slice_del(z);
|
340
|
+
if (ret < 0) return ret;
|
341
|
+
}
|
342
|
+
break;
|
343
|
+
}
|
344
|
+
return 1;
|
345
|
+
}
|
346
|
+
|
347
|
+
static int r_deriv(struct SN_env * z) {
|
348
|
+
int among_var;
|
349
|
+
z->ket = z->c;
|
350
|
+
among_var = find_among_b(z, a_2, 25);
|
351
|
+
if (!(among_var)) return 0;
|
352
|
+
z->bra = z->c;
|
353
|
+
switch (among_var) {
|
354
|
+
case 1:
|
355
|
+
{ int ret = r_R2(z);
|
356
|
+
if (ret <= 0) return ret;
|
357
|
+
}
|
358
|
+
{ int ret = slice_del(z);
|
359
|
+
if (ret < 0) return ret;
|
360
|
+
}
|
361
|
+
break;
|
362
|
+
case 2:
|
363
|
+
{ int ret = slice_from_s(z, 3, s_9);
|
364
|
+
if (ret < 0) return ret;
|
365
|
+
}
|
366
|
+
break;
|
367
|
+
case 3:
|
368
|
+
{ int ret = slice_from_s(z, 3, s_10);
|
369
|
+
if (ret < 0) return ret;
|
370
|
+
}
|
371
|
+
break;
|
372
|
+
case 4:
|
373
|
+
{ int ret = slice_from_s(z, 4, s_11);
|
374
|
+
if (ret < 0) return ret;
|
375
|
+
}
|
376
|
+
break;
|
377
|
+
case 5:
|
378
|
+
{ int ret = slice_from_s(z, 5, s_12);
|
379
|
+
if (ret < 0) return ret;
|
380
|
+
}
|
381
|
+
break;
|
382
|
+
case 6:
|
383
|
+
{ int ret = slice_from_s(z, 3, s_13);
|
384
|
+
if (ret < 0) return ret;
|
385
|
+
}
|
386
|
+
break;
|
387
|
+
}
|
388
|
+
return 1;
|
389
|
+
}
|
390
|
+
|
391
|
+
static int r_verb_sfx(struct SN_env * z) {
|
392
|
+
int among_var;
|
393
|
+
z->ket = z->c;
|
394
|
+
if (z->c - 2 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((282896 >> (z->p[z->c - 1] & 0x1f)) & 1)) return 0;
|
395
|
+
among_var = find_among_b(z, a_3, 12);
|
396
|
+
if (!(among_var)) return 0;
|
397
|
+
z->bra = z->c;
|
398
|
+
switch (among_var) {
|
399
|
+
case 1:
|
400
|
+
{ int ret = r_RV(z);
|
401
|
+
if (ret <= 0) return ret;
|
402
|
+
}
|
403
|
+
{ int ret = slice_del(z);
|
404
|
+
if (ret < 0) return ret;
|
405
|
+
}
|
406
|
+
break;
|
407
|
+
case 2:
|
408
|
+
{ int ret = r_R1(z);
|
409
|
+
if (ret <= 0) return ret;
|
410
|
+
}
|
411
|
+
{ int ret = slice_del(z);
|
412
|
+
if (ret < 0) return ret;
|
413
|
+
}
|
414
|
+
break;
|
415
|
+
}
|
416
|
+
return 1;
|
417
|
+
}
|
418
|
+
|
419
|
+
extern int irish_ISO_8859_1_stem(struct SN_env * z) {
|
420
|
+
{ int c1 = z->c;
|
421
|
+
{ int ret = r_initial_morph(z);
|
422
|
+
if (ret < 0) return ret;
|
423
|
+
}
|
424
|
+
z->c = c1;
|
425
|
+
}
|
426
|
+
|
427
|
+
{ int ret = r_mark_regions(z);
|
428
|
+
if (ret < 0) return ret;
|
429
|
+
}
|
430
|
+
z->lb = z->c; z->c = z->l;
|
431
|
+
|
432
|
+
{ int m2 = z->l - z->c; (void)m2;
|
433
|
+
{ int ret = r_noun_sfx(z);
|
434
|
+
if (ret < 0) return ret;
|
435
|
+
}
|
436
|
+
z->c = z->l - m2;
|
437
|
+
}
|
438
|
+
{ int m3 = z->l - z->c; (void)m3;
|
439
|
+
{ int ret = r_deriv(z);
|
440
|
+
if (ret < 0) return ret;
|
441
|
+
}
|
442
|
+
z->c = z->l - m3;
|
443
|
+
}
|
444
|
+
{ int m4 = z->l - z->c; (void)m4;
|
445
|
+
{ int ret = r_verb_sfx(z);
|
446
|
+
if (ret < 0) return ret;
|
447
|
+
}
|
448
|
+
z->c = z->l - m4;
|
449
|
+
}
|
450
|
+
z->c = z->lb;
|
451
|
+
return 1;
|
452
|
+
}
|
453
|
+
|
454
|
+
extern struct SN_env * irish_ISO_8859_1_create_env(void) { return SN_create_env(0, 3); }
|
455
|
+
|
456
|
+
extern void irish_ISO_8859_1_close_env(struct SN_env * z) { SN_close_env(z, 0); }
|
457
|
+
|