Commit f82b853b authored by Teodor Sigaev's avatar Teodor Sigaev

1 Update Snowball sources

2 Makefile fixes
parent 3b0453b2
...@@ -49,7 +49,7 @@ snb_en_init(PG_FUNCTION_ARGS) ...@@ -49,7 +49,7 @@ snb_en_init(PG_FUNCTION_ARGS)
PG_FREE_IF_COPY(in, 0); PG_FREE_IF_COPY(in, 0);
} }
d->z = english_create_env(); d->z = english_ISO_8859_1_create_env();
if (!d->z) if (!d->z)
{ {
freestoplist(&(d->stoplist)); freestoplist(&(d->stoplist));
...@@ -57,7 +57,7 @@ snb_en_init(PG_FUNCTION_ARGS) ...@@ -57,7 +57,7 @@ snb_en_init(PG_FUNCTION_ARGS)
(errcode(ERRCODE_OUT_OF_MEMORY), (errcode(ERRCODE_OUT_OF_MEMORY),
errmsg("out of memory"))); errmsg("out of memory")));
} }
d->stem = english_stem; d->stem = english_ISO_8859_1_stem;
PG_RETURN_POINTER(d); PG_RETURN_POINTER(d);
} }
...@@ -83,7 +83,7 @@ snb_ru_init(PG_FUNCTION_ARGS) ...@@ -83,7 +83,7 @@ snb_ru_init(PG_FUNCTION_ARGS)
PG_FREE_IF_COPY(in, 0); PG_FREE_IF_COPY(in, 0);
} }
d->z = russian_create_env(); d->z = russian_KOI8_R_create_env();
if (!d->z) if (!d->z)
{ {
freestoplist(&(d->stoplist)); freestoplist(&(d->stoplist));
...@@ -91,7 +91,7 @@ snb_ru_init(PG_FUNCTION_ARGS) ...@@ -91,7 +91,7 @@ snb_ru_init(PG_FUNCTION_ARGS)
(errcode(ERRCODE_OUT_OF_MEMORY), (errcode(ERRCODE_OUT_OF_MEMORY),
errmsg("out of memory"))); errmsg("out of memory")));
} }
d->stem = russian_stem; d->stem = russian_KOI8_R_stem;
PG_RETURN_POINTER(d); PG_RETURN_POINTER(d);
} }
......
...@@ -50,7 +50,7 @@ Example 1: ...@@ -50,7 +50,7 @@ Example 1:
2. Create template files for Portuguese 2. Create template files for Portuguese
./config.sh -n pt -s -p portuguese -v -C'Snowball stemmer for Portuguese' ./config.sh -n pt -s -p portuguese_ISO_8859_1 -v -C'Snowball stemmer for Portuguese'
Note, that argument for -p option should be *the same* as name of stemming Note, that argument for -p option should be *the same* as name of stemming
function in stem.c (without _stem) function in stem.c (without _stem)
...@@ -81,9 +81,10 @@ Example 1: ...@@ -81,9 +81,10 @@ Example 1:
Here is what I have in pg_ts_dict table Here is what I have in pg_ts_dict table
psql -d testdict -c "select * from pg_ts_dict where dict_name='pt';" psql -d testdict -c "select * from pg_ts_dict where dict_name='pt';"
dict_name | dict_init | dict_initoption | dict_lexize | dict_comment dict_name | dict_init | dict_initoption | dict_lexize | dict_comment
-----------+-----------+-----------------+-------------+--------------------------------- -----------+--------------------+-----------------+---------------------------------------+---------------------------------
pt | 7177806 | | 7159330 | Snowball stemmer for Portuguese pt | dinit_pt(internal) | | snb_lexize(internal,internal,integer) | Snowball stemmer for Portuguese
(1 row) (1 row)
...@@ -127,4 +128,4 @@ Example 2: ...@@ -127,4 +128,4 @@ Example 2:
you may edit them to create actual dictionary. you may edit them to create actual dictionary.
Please, check Tsearch2 home page (http://www.sai.msu.su/~megera/postgres/gist/tsearch/V2/) Please, check Tsearch2 home page (http://www.sai.msu.su/~megera/postgres/gist/tsearch/V2/)
for additional information about "Gendict tutorial" and dictionaries. for additional information about "Gendict tutorial" and dictionaries.
\ No newline at end of file
...@@ -131,9 +131,16 @@ fi ...@@ -131,9 +131,16 @@ fi
if [ ${#cfile} -ne 0 ] || [ ${#hfile} -ne 0 ] ; then if [ ${#cfile} -ne 0 ] || [ ${#hfile} -ne 0 ] ; then
[ $verbose = "yes" ] && echo -n 'Copy source and header files... ' [ $verbose = "yes" ] && echo -n 'Copy source and header files... '
if [ ${#cfile} -ne 0 ] ; then if [ ${#cfile} -ne 0 ] ; then
if ! cp $cfile ../../$dir ; then if [ $stemmode = "yes" ] ; then
echo "Cant cp all or one of files: $cfile" for cfn in $cfile
exit 1 do
sed s#../runtime/## < $cfn > ../../$dir/$cfn
done
else
if ! cp $cfile ../../$dir ; then
echo "Can't cp all or one of files: $cfile"
exit 1
fi
fi fi
fi fi
if [ ${#hfile} -ne 0 ] ; then if [ ${#hfile} -ne 0 ] ; then
......
# $PostgreSQL: pgsql/contrib/tsearch2/ispell/Makefile,v 1.6 2004/06/23 11:06:11 teodor Exp $ # $PostgreSQL: pgsql/contrib/tsearch2/ispell/Makefile,v 1.7 2005/09/15 11:14:18 teodor Exp $
subdir = contrib/tsearch2/ispell PG_CPPFLAGS = -I$(srcdir)/..
SUBOBJS = spell.o regis.o
EXTRA_CLEAN = SUBSYS.o $(SUBOBJS)
ifdef USE_PGXS
PGXS = $(shell pg_config --pgxs)
include $(PGXS)
else
subdir = contrib/tsearch2
top_builddir = ../../.. top_builddir = ../../..
include $(top_builddir)/src/Makefile.global include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif
PG_CPPFLAGS = -I$(srcdir)/.. $(CPPFLAGS)
override CFLAGS += $(CFLAGS_SL) override CFLAGS += $(CFLAGS_SL)
SUBOBJS = spell.o regis.o
all: SUBSYS.o all: SUBSYS.o
SUBSYS.o: $(SUBOBJS) SUBSYS.o: $(SUBOBJS)
$(LD) $(LDREL) $(LDOUT) $@ $^ $(LD) $(LDREL) $(LDOUT) $@ $^
EXTRA_CLEAN = SUBSYS.o $(SUBOBJS)
include $(top_srcdir)/contrib/contrib-global.mk
# $PostgreSQL: pgsql/contrib/tsearch2/snowball/Makefile,v 1.5 2003/11/29 19:51:36 pgsql Exp $ # $PostgreSQL: pgsql/contrib/tsearch2/snowball/Makefile,v 1.6 2005/09/15 11:14:18 teodor Exp $
subdir = contrib/tsearch2/snowball
PG_CPPFLAGS = -I$(srcdir)/..
SUBOBJS = english_stem.o api.o russian_stem.o utilities.o
EXTRA_CLEAN = SUBSYS.o $(SUBOBJS)
ifdef USE_PGXS
PGXS = $(shell pg_config --pgxs)
include $(PGXS)
else
subdir = contrib/tsearch2
top_builddir = ../../.. top_builddir = ../../..
include $(top_builddir)/src/Makefile.global include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif
PG_CPPFLAGS = -I$(srcdir)/..
override CFLAGS += $(CFLAGS_SL) override CFLAGS += $(CFLAGS_SL)
SUBOBJS = english_stem.o api.o russian_stem.o utilities.o
all: SUBSYS.o all: SUBSYS.o
SUBSYS.o: $(SUBOBJS) SUBSYS.o: $(SUBOBJS)
$(LD) $(LDREL) $(LDOUT) $@ $^ $(LD) $(LDREL) $(LDOUT) $@ $^
EXTRA_CLEAN = SUBSYS.o $(SUBOBJS)
include $(top_srcdir)/contrib/contrib-global.mk
#include <stdlib.h>
#include <stdlib.h> /* for calloc, free */
#include "header.h" #include "header.h"
struct SN_env * extern struct SN_env * SN_create_env(int S_size, int I_size, int B_size)
SN_create_env(int S_size, int I_size, int B_size)
{ {
struct SN_env *z = (struct SN_env *) calloc(1, sizeof(struct SN_env)); struct SN_env * z = (struct SN_env *) calloc(1, sizeof(struct SN_env));
struct SN_env *z2 = z; if (z == NULL) return NULL;
z->p = create_s();
if (z->p == NULL) goto error;
if (S_size)
{
int i;
z->S = (symbol * *) calloc(S_size, sizeof(symbol *));
if (z->S == NULL) goto error;
if (!z) for (i = 0; i < S_size; i++)
return z; {
z->S[i] = create_s();
if (z->S[i] == NULL) goto error;
}
z->S_size = S_size;
}
z->p = create_s(); if (I_size)
if (!z->p) {
z = NULL; z->I = (int *) calloc(I_size, sizeof(int));
if (z->I == NULL) goto error;
z->I_size = I_size;
}
if (z && S_size) if (B_size)
{ {
if ((z->S = (symbol * *) calloc(S_size, sizeof(symbol *)))) z->B = (symbol *) calloc(B_size, sizeof(symbol));
{ if (z->B == NULL) goto error;
int i; z->B_size = B_size;
}
for (i = 0; i < S_size; i++) return z;
{ error:
if (!(z->S[i] = create_s())) SN_close_env(z);
{ return NULL;
z = NULL;
break;
}
}
z2->S_size = i;
}
else
z = NULL;
}
if (z && I_size)
{
z->I = (int *) calloc(I_size, sizeof(int));
if (z->I)
z->I_size = I_size;
else
z = NULL;
}
if (z && B_size)
{
z->B = (symbol *) calloc(B_size, sizeof(symbol));
if (z->B)
z->B_size = B_size;
else
z = NULL;
}
if (!z)
SN_close_env(z2);
return z;
} }
void extern void SN_close_env(struct SN_env * z)
SN_close_env(struct SN_env * z)
{ {
if (z->S && z->S_size) if (z == NULL) return;
{ if (z->S_size)
{ {
int i; int i;
for (i = 0; i < z->S_size; i++)
for (i = 0; i < z->S_size; i++) {
lose_s(z->S[i]); lose_s(z->S[i]);
} }
free(z->S); free(z->S);
} }
if (z->I_size) if (z->I_size) free(z->I);
free(z->I); if (z->B_size) free(z->B);
if (z->B_size) if (z->p) lose_s(z->p);
free(z->B); free(z);
if (z->p)
lose_s(z->p);
free(z);
} }
void extern int SN_set_current(struct SN_env * z, int size, const symbol * s)
SN_set_current(struct SN_env * z, int size, const symbol * s)
{ {
replace_s(z, 0, z->l, size, s); int err = replace_s(z, 0, z->l, size, s, NULL);
z->c = 0; z->c = 0;
return err;
} }
...@@ -11,24 +11,17 @@ typedef unsigned char symbol; ...@@ -11,24 +11,17 @@ typedef unsigned char symbol;
*/ */
struct SN_env struct SN_env {
{ symbol * p;
symbol *p; int c; int a; int l; int lb; int bra; int ket;
int c; int S_size; int I_size; int B_size;
int a; symbol * * S;
int l; int * I;
int lb; symbol * B;
int bra;
int ket;
int S_size;
int I_size;
int B_size;
symbol **S;
int *I;
symbol *B;
}; };
extern struct SN_env *SN_create_env(int S_size, int I_size, int B_size); extern struct SN_env * SN_create_env(int S_size, int I_size, int B_size);
extern void SN_close_env(struct SN_env * z); extern void SN_close_env(struct SN_env * z);
extern void SN_set_current(struct SN_env * z, int size, const symbol * s); extern int SN_set_current(struct SN_env * z, int size, const symbol * s);
...@@ -3,1105 +3,1154 @@ ...@@ -3,1105 +3,1154 @@
#include "header.h" #include "header.h"
extern int english_stem(struct SN_env * z); extern int english_ISO_8859_1_stem(struct SN_env * z);
static int r_exception2(struct SN_env * z); static int r_exception2(struct SN_env * z);
static int r_exception1(struct SN_env * z); static int r_exception1(struct SN_env * z);
static int r_Step_5(struct SN_env * z); static int r_Step_5(struct SN_env * z);
static int r_Step_4(struct SN_env * z); static int r_Step_4(struct SN_env * z);
static int r_Step_3(struct SN_env * z); static int r_Step_3(struct SN_env * z);
static int r_Step_2(struct SN_env * z); static int r_Step_2(struct SN_env * z);
static int r_Step_1c(struct SN_env * z); static int r_Step_1c(struct SN_env * z);
static int r_Step_1b(struct SN_env * z); static int r_Step_1b(struct SN_env * z);
static int r_Step_1a(struct SN_env * z); static int r_Step_1a(struct SN_env * z);
static int r_R2(struct SN_env * z); static int r_R2(struct SN_env * z);
static int r_R1(struct SN_env * z); static int r_R1(struct SN_env * z);
static int r_shortv(struct SN_env * z); static int r_shortv(struct SN_env * z);
static int r_mark_regions(struct SN_env * z); static int r_mark_regions(struct SN_env * z);
static int r_postlude(struct SN_env * z); static int r_postlude(struct SN_env * z);
static int r_prelude(struct SN_env * z); static int r_prelude(struct SN_env * z);
extern struct SN_env *english_create_env(void); extern struct SN_env * english_ISO_8859_1_create_env(void);
extern void english_close_env(struct SN_env * z); extern void english_ISO_8859_1_close_env(struct SN_env * z);
static symbol s_0_0[5] = {'g', 'e', 'n', 'e', 'r'}; static symbol s_0_0[6] = { 'c', 'o', 'm', 'm', 'u', 'n' };
static symbol s_0_1[5] = { 'g', 'e', 'n', 'e', 'r' };
static struct among a_0[1] =
static struct among a_0[2] =
{ {
/* 0 */ {5, s_0_0, -1, -1, 0} /* 0 */ { 6, s_0_0, -1, -1, 0},
/* 1 */ { 5, s_0_1, -1, -1, 0}
}; };
static symbol s_1_0[3] = {'i', 'e', 'd'}; static symbol s_1_0[1] = { '\'' };
static symbol s_1_1[1] = {'s'}; static symbol s_1_1[3] = { '\'', 's', '\'' };
static symbol s_1_2[3] = {'i', 'e', 's'}; static symbol s_1_2[2] = { '\'', 's' };
static symbol s_1_3[4] = {'s', 's', 'e', 's'};
static symbol s_1_4[2] = {'s', 's'};
static symbol s_1_5[2] = {'u', 's'};
static struct among a_1[6] = static struct among a_1[3] =
{ {
/* 0 */ {3, s_1_0, -1, 2, 0}, /* 0 */ { 1, s_1_0, -1, 1, 0},
/* 1 */ {1, s_1_1, -1, 3, 0}, /* 1 */ { 3, s_1_1, 0, 1, 0},
/* 2 */ {3, s_1_2, 1, 2, 0}, /* 2 */ { 2, s_1_2, -1, 1, 0}
/* 3 */ {4, s_1_3, 1, 1, 0},
/* 4 */ {2, s_1_4, 1, -1, 0},
/* 5 */ {2, s_1_5, 1, -1, 0}
}; };
static symbol s_2_1[2] = {'b', 'b'}; static symbol s_2_0[3] = { 'i', 'e', 'd' };
static symbol s_2_2[2] = {'d', 'd'}; static symbol s_2_1[1] = { 's' };
static symbol s_2_3[2] = {'f', 'f'}; static symbol s_2_2[3] = { 'i', 'e', 's' };
static symbol s_2_4[2] = {'g', 'g'}; static symbol s_2_3[4] = { 's', 's', 'e', 's' };
static symbol s_2_5[2] = {'b', 'l'}; static symbol s_2_4[2] = { 's', 's' };
static symbol s_2_6[2] = {'m', 'm'}; static symbol s_2_5[2] = { 'u', 's' };
static symbol s_2_7[2] = {'n', 'n'};
static symbol s_2_8[2] = {'p', 'p'};
static symbol s_2_9[2] = {'r', 'r'};
static symbol s_2_10[2] = {'a', 't'};
static symbol s_2_11[2] = {'t', 't'};
static symbol s_2_12[2] = {'i', 'z'};
static struct among a_2[13] = static struct among a_2[6] =
{ {
/* 0 */ {0, 0, -1, 3, 0}, /* 0 */ { 3, s_2_0, -1, 2, 0},
/* 1 */ {2, s_2_1, 0, 2, 0}, /* 1 */ { 1, s_2_1, -1, 3, 0},
/* 2 */ {2, s_2_2, 0, 2, 0}, /* 2 */ { 3, s_2_2, 1, 2, 0},
/* 3 */ {2, s_2_3, 0, 2, 0}, /* 3 */ { 4, s_2_3, 1, 1, 0},
/* 4 */ {2, s_2_4, 0, 2, 0}, /* 4 */ { 2, s_2_4, 1, -1, 0},
/* 5 */ {2, s_2_5, 0, 1, 0}, /* 5 */ { 2, s_2_5, 1, -1, 0}
/* 6 */ {2, s_2_6, 0, 2, 0},
/* 7 */ {2, s_2_7, 0, 2, 0},
/* 8 */ {2, s_2_8, 0, 2, 0},
/* 9 */ {2, s_2_9, 0, 2, 0},
/* 10 */ {2, s_2_10, 0, 1, 0},
/* 11 */ {2, s_2_11, 0, 2, 0},
/* 12 */ {2, s_2_12, 0, 1, 0}
}; };
static symbol s_3_0[2] = {'e', 'd'}; static symbol s_3_1[2] = { 'b', 'b' };
static symbol s_3_1[3] = {'e', 'e', 'd'}; static symbol s_3_2[2] = { 'd', 'd' };
static symbol s_3_2[3] = {'i', 'n', 'g'}; static symbol s_3_3[2] = { 'f', 'f' };
static symbol s_3_3[4] = {'e', 'd', 'l', 'y'}; static symbol s_3_4[2] = { 'g', 'g' };
static symbol s_3_4[5] = {'e', 'e', 'd', 'l', 'y'}; static symbol s_3_5[2] = { 'b', 'l' };
static symbol s_3_5[5] = {'i', 'n', 'g', 'l', 'y'}; static symbol s_3_6[2] = { 'm', 'm' };
static symbol s_3_7[2] = { 'n', 'n' };
static struct among a_3[6] = static symbol s_3_8[2] = { 'p', 'p' };
static symbol s_3_9[2] = { 'r', 'r' };
static symbol s_3_10[2] = { 'a', 't' };
static symbol s_3_11[2] = { 't', 't' };
static symbol s_3_12[2] = { 'i', 'z' };
static struct among a_3[13] =
{ {
/* 0 */ {2, s_3_0, -1, 2, 0}, /* 0 */ { 0, 0, -1, 3, 0},
/* 1 */ {3, s_3_1, 0, 1, 0}, /* 1 */ { 2, s_3_1, 0, 2, 0},
/* 2 */ {3, s_3_2, -1, 2, 0}, /* 2 */ { 2, s_3_2, 0, 2, 0},
/* 3 */ {4, s_3_3, -1, 2, 0}, /* 3 */ { 2, s_3_3, 0, 2, 0},
/* 4 */ {5, s_3_4, 3, 1, 0}, /* 4 */ { 2, s_3_4, 0, 2, 0},
/* 5 */ {5, s_3_5, -1, 2, 0} /* 5 */ { 2, s_3_5, 0, 1, 0},
/* 6 */ { 2, s_3_6, 0, 2, 0},
/* 7 */ { 2, s_3_7, 0, 2, 0},
/* 8 */ { 2, s_3_8, 0, 2, 0},
/* 9 */ { 2, s_3_9, 0, 2, 0},
/* 10 */ { 2, s_3_10, 0, 1, 0},
/* 11 */ { 2, s_3_11, 0, 2, 0},
/* 12 */ { 2, s_3_12, 0, 1, 0}
}; };
static symbol s_4_0[4] = {'a', 'n', 'c', 'i'}; static symbol s_4_0[2] = { 'e', 'd' };
static symbol s_4_1[4] = {'e', 'n', 'c', 'i'}; static symbol s_4_1[3] = { 'e', 'e', 'd' };
static symbol s_4_2[3] = {'o', 'g', 'i'}; static symbol s_4_2[3] = { 'i', 'n', 'g' };
static symbol s_4_3[2] = {'l', 'i'}; static symbol s_4_3[4] = { 'e', 'd', 'l', 'y' };
static symbol s_4_4[3] = {'b', 'l', 'i'}; static symbol s_4_4[5] = { 'e', 'e', 'd', 'l', 'y' };
static symbol s_4_5[4] = {'a', 'b', 'l', 'i'}; static symbol s_4_5[5] = { 'i', 'n', 'g', 'l', 'y' };
static symbol s_4_6[4] = {'a', 'l', 'l', 'i'};
static symbol s_4_7[5] = {'f', 'u', 'l', 'l', 'i'};
static symbol s_4_8[6] = {'l', 'e', 's', 's', 'l', 'i'};
static symbol s_4_9[5] = {'o', 'u', 's', 'l', 'i'};
static symbol s_4_10[5] = {'e', 'n', 't', 'l', 'i'};
static symbol s_4_11[5] = {'a', 'l', 'i', 't', 'i'};
static symbol s_4_12[6] = {'b', 'i', 'l', 'i', 't', 'i'};
static symbol s_4_13[5] = {'i', 'v', 'i', 't', 'i'};
static symbol s_4_14[6] = {'t', 'i', 'o', 'n', 'a', 'l'};
static symbol s_4_15[7] = {'a', 't', 'i', 'o', 'n', 'a', 'l'};
static symbol s_4_16[5] = {'a', 'l', 'i', 's', 'm'};
static symbol s_4_17[5] = {'a', 't', 'i', 'o', 'n'};
static symbol s_4_18[7] = {'i', 'z', 'a', 't', 'i', 'o', 'n'};
static symbol s_4_19[4] = {'i', 'z', 'e', 'r'};
static symbol s_4_20[4] = {'a', 't', 'o', 'r'};
static symbol s_4_21[7] = {'i', 'v', 'e', 'n', 'e', 's', 's'};
static symbol s_4_22[7] = {'f', 'u', 'l', 'n', 'e', 's', 's'};
static symbol s_4_23[7] = {'o', 'u', 's', 'n', 'e', 's', 's'};
static struct among a_4[24] = static struct among a_4[6] =
{ {
/* 0 */ {4, s_4_0, -1, 3, 0}, /* 0 */ { 2, s_4_0, -1, 2, 0},
/* 1 */ {4, s_4_1, -1, 2, 0}, /* 1 */ { 3, s_4_1, 0, 1, 0},
/* 2 */ {3, s_4_2, -1, 13, 0}, /* 2 */ { 3, s_4_2, -1, 2, 0},
/* 3 */ {2, s_4_3, -1, 16, 0}, /* 3 */ { 4, s_4_3, -1, 2, 0},
/* 4 */ {3, s_4_4, 3, 12, 0}, /* 4 */ { 5, s_4_4, 3, 1, 0},
/* 5 */ {4, s_4_5, 4, 4, 0}, /* 5 */ { 5, s_4_5, -1, 2, 0}
/* 6 */ {4, s_4_6, 3, 8, 0},
/* 7 */ {5, s_4_7, 3, 14, 0},
/* 8 */ {6, s_4_8, 3, 15, 0},
/* 9 */ {5, s_4_9, 3, 10, 0},
/* 10 */ {5, s_4_10, 3, 5, 0},
/* 11 */ {5, s_4_11, -1, 8, 0},
/* 12 */ {6, s_4_12, -1, 12, 0},
/* 13 */ {5, s_4_13, -1, 11, 0},
/* 14 */ {6, s_4_14, -1, 1, 0},
/* 15 */ {7, s_4_15, 14, 7, 0},
/* 16 */ {5, s_4_16, -1, 8, 0},
/* 17 */ {5, s_4_17, -1, 7, 0},
/* 18 */ {7, s_4_18, 17, 6, 0},
/* 19 */ {4, s_4_19, -1, 6, 0},
/* 20 */ {4, s_4_20, -1, 7, 0},
/* 21 */ {7, s_4_21, -1, 11, 0},
/* 22 */ {7, s_4_22, -1, 9, 0},
/* 23 */ {7, s_4_23, -1, 10, 0}
}; };
static symbol s_5_0[5] = {'i', 'c', 'a', 't', 'e'}; static symbol s_5_0[4] = { 'a', 'n', 'c', 'i' };
static symbol s_5_1[5] = {'a', 't', 'i', 'v', 'e'}; static symbol s_5_1[4] = { 'e', 'n', 'c', 'i' };
static symbol s_5_2[5] = {'a', 'l', 'i', 'z', 'e'}; static symbol s_5_2[3] = { 'o', 'g', 'i' };
static symbol s_5_3[5] = {'i', 'c', 'i', 't', 'i'}; static symbol s_5_3[2] = { 'l', 'i' };
static symbol s_5_4[4] = {'i', 'c', 'a', 'l'}; static symbol s_5_4[3] = { 'b', 'l', 'i' };
static symbol s_5_5[6] = {'t', 'i', 'o', 'n', 'a', 'l'}; static symbol s_5_5[4] = { 'a', 'b', 'l', 'i' };
static symbol s_5_6[7] = {'a', 't', 'i', 'o', 'n', 'a', 'l'}; static symbol s_5_6[4] = { 'a', 'l', 'l', 'i' };
static symbol s_5_7[3] = {'f', 'u', 'l'}; static symbol s_5_7[5] = { 'f', 'u', 'l', 'l', 'i' };
static symbol s_5_8[4] = {'n', 'e', 's', 's'}; static symbol s_5_8[6] = { 'l', 'e', 's', 's', 'l', 'i' };
static symbol s_5_9[5] = { 'o', 'u', 's', 'l', 'i' };
static struct among a_5[9] = static symbol s_5_10[5] = { 'e', 'n', 't', 'l', 'i' };
static symbol s_5_11[5] = { 'a', 'l', 'i', 't', 'i' };
static symbol s_5_12[6] = { 'b', 'i', 'l', 'i', 't', 'i' };
static symbol s_5_13[5] = { 'i', 'v', 'i', 't', 'i' };
static symbol s_5_14[6] = { 't', 'i', 'o', 'n', 'a', 'l' };
static symbol s_5_15[7] = { 'a', 't', 'i', 'o', 'n', 'a', 'l' };
static symbol s_5_16[5] = { 'a', 'l', 'i', 's', 'm' };
static symbol s_5_17[5] = { 'a', 't', 'i', 'o', 'n' };
static symbol s_5_18[7] = { 'i', 'z', 'a', 't', 'i', 'o', 'n' };
static symbol s_5_19[4] = { 'i', 'z', 'e', 'r' };
static symbol s_5_20[4] = { 'a', 't', 'o', 'r' };
static symbol s_5_21[7] = { 'i', 'v', 'e', 'n', 'e', 's', 's' };
static symbol s_5_22[7] = { 'f', 'u', 'l', 'n', 'e', 's', 's' };
static symbol s_5_23[7] = { 'o', 'u', 's', 'n', 'e', 's', 's' };
static struct among a_5[24] =
{ {
/* 0 */ {5, s_5_0, -1, 4, 0}, /* 0 */ { 4, s_5_0, -1, 3, 0},
/* 1 */ {5, s_5_1, -1, 6, 0}, /* 1 */ { 4, s_5_1, -1, 2, 0},
/* 2 */ {5, s_5_2, -1, 3, 0}, /* 2 */ { 3, s_5_2, -1, 13, 0},
/* 3 */ {5, s_5_3, -1, 4, 0}, /* 3 */ { 2, s_5_3, -1, 16, 0},
/* 4 */ {4, s_5_4, -1, 4, 0}, /* 4 */ { 3, s_5_4, 3, 12, 0},
/* 5 */ {6, s_5_5, -1, 1, 0}, /* 5 */ { 4, s_5_5, 4, 4, 0},
/* 6 */ {7, s_5_6, 5, 2, 0}, /* 6 */ { 4, s_5_6, 3, 8, 0},
/* 7 */ {3, s_5_7, -1, 5, 0}, /* 7 */ { 5, s_5_7, 3, 14, 0},
/* 8 */ {4, s_5_8, -1, 5, 0} /* 8 */ { 6, s_5_8, 3, 15, 0},
/* 9 */ { 5, s_5_9, 3, 10, 0},
/* 10 */ { 5, s_5_10, 3, 5, 0},
/* 11 */ { 5, s_5_11, -1, 8, 0},
/* 12 */ { 6, s_5_12, -1, 12, 0},
/* 13 */ { 5, s_5_13, -1, 11, 0},
/* 14 */ { 6, s_5_14, -1, 1, 0},
/* 15 */ { 7, s_5_15, 14, 7, 0},
/* 16 */ { 5, s_5_16, -1, 8, 0},
/* 17 */ { 5, s_5_17, -1, 7, 0},
/* 18 */ { 7, s_5_18, 17, 6, 0},
/* 19 */ { 4, s_5_19, -1, 6, 0},
/* 20 */ { 4, s_5_20, -1, 7, 0},
/* 21 */ { 7, s_5_21, -1, 11, 0},
/* 22 */ { 7, s_5_22, -1, 9, 0},
/* 23 */ { 7, s_5_23, -1, 10, 0}
}; };
static symbol s_6_0[2] = {'i', 'c'}; static symbol s_6_0[5] = { 'i', 'c', 'a', 't', 'e' };
static symbol s_6_1[4] = {'a', 'n', 'c', 'e'}; static symbol s_6_1[5] = { 'a', 't', 'i', 'v', 'e' };
static symbol s_6_2[4] = {'e', 'n', 'c', 'e'}; static symbol s_6_2[5] = { 'a', 'l', 'i', 'z', 'e' };
static symbol s_6_3[4] = {'a', 'b', 'l', 'e'}; static symbol s_6_3[5] = { 'i', 'c', 'i', 't', 'i' };
static symbol s_6_4[4] = {'i', 'b', 'l', 'e'}; static symbol s_6_4[4] = { 'i', 'c', 'a', 'l' };
static symbol s_6_5[3] = {'a', 't', 'e'}; static symbol s_6_5[6] = { 't', 'i', 'o', 'n', 'a', 'l' };
static symbol s_6_6[3] = {'i', 'v', 'e'}; static symbol s_6_6[7] = { 'a', 't', 'i', 'o', 'n', 'a', 'l' };
static symbol s_6_7[3] = {'i', 'z', 'e'}; static symbol s_6_7[3] = { 'f', 'u', 'l' };
static symbol s_6_8[3] = {'i', 't', 'i'}; static symbol s_6_8[4] = { 'n', 'e', 's', 's' };
static symbol s_6_9[2] = {'a', 'l'};
static symbol s_6_10[3] = {'i', 's', 'm'}; static struct among a_6[9] =
static symbol s_6_11[3] = {'i', 'o', 'n'};
static symbol s_6_12[2] = {'e', 'r'};
static symbol s_6_13[3] = {'o', 'u', 's'};
static symbol s_6_14[3] = {'a', 'n', 't'};
static symbol s_6_15[3] = {'e', 'n', 't'};
static symbol s_6_16[4] = {'m', 'e', 'n', 't'};
static symbol s_6_17[5] = {'e', 'm', 'e', 'n', 't'};
static struct among a_6[18] =
{ {
/* 0 */ {2, s_6_0, -1, 1, 0}, /* 0 */ { 5, s_6_0, -1, 4, 0},
/* 1 */ {4, s_6_1, -1, 1, 0}, /* 1 */ { 5, s_6_1, -1, 6, 0},
/* 2 */ {4, s_6_2, -1, 1, 0}, /* 2 */ { 5, s_6_2, -1, 3, 0},
/* 3 */ {4, s_6_3, -1, 1, 0}, /* 3 */ { 5, s_6_3, -1, 4, 0},
/* 4 */ {4, s_6_4, -1, 1, 0}, /* 4 */ { 4, s_6_4, -1, 4, 0},
/* 5 */ {3, s_6_5, -1, 1, 0}, /* 5 */ { 6, s_6_5, -1, 1, 0},
/* 6 */ {3, s_6_6, -1, 1, 0}, /* 6 */ { 7, s_6_6, 5, 2, 0},
/* 7 */ {3, s_6_7, -1, 1, 0}, /* 7 */ { 3, s_6_7, -1, 5, 0},
/* 8 */ {3, s_6_8, -1, 1, 0}, /* 8 */ { 4, s_6_8, -1, 5, 0}
/* 9 */ {2, s_6_9, -1, 1, 0},
/* 10 */ {3, s_6_10, -1, 1, 0},
/* 11 */ {3, s_6_11, -1, 2, 0},
/* 12 */ {2, s_6_12, -1, 1, 0},
/* 13 */ {3, s_6_13, -1, 1, 0},
/* 14 */ {3, s_6_14, -1, 1, 0},
/* 15 */ {3, s_6_15, -1, 1, 0},
/* 16 */ {4, s_6_16, 15, 1, 0},
/* 17 */ {5, s_6_17, 16, 1, 0}
}; };
static symbol s_7_0[1] = {'e'}; static symbol s_7_0[2] = { 'i', 'c' };
static symbol s_7_1[1] = {'l'}; static symbol s_7_1[4] = { 'a', 'n', 'c', 'e' };
static symbol s_7_2[4] = { 'e', 'n', 'c', 'e' };
static struct among a_7[2] = static symbol s_7_3[4] = { 'a', 'b', 'l', 'e' };
static symbol s_7_4[4] = { 'i', 'b', 'l', 'e' };
static symbol s_7_5[3] = { 'a', 't', 'e' };
static symbol s_7_6[3] = { 'i', 'v', 'e' };
static symbol s_7_7[3] = { 'i', 'z', 'e' };
static symbol s_7_8[3] = { 'i', 't', 'i' };
static symbol s_7_9[2] = { 'a', 'l' };
static symbol s_7_10[3] = { 'i', 's', 'm' };
static symbol s_7_11[3] = { 'i', 'o', 'n' };
static symbol s_7_12[2] = { 'e', 'r' };
static symbol s_7_13[3] = { 'o', 'u', 's' };
static symbol s_7_14[3] = { 'a', 'n', 't' };
static symbol s_7_15[3] = { 'e', 'n', 't' };
static symbol s_7_16[4] = { 'm', 'e', 'n', 't' };
static symbol s_7_17[5] = { 'e', 'm', 'e', 'n', 't' };
static struct among a_7[18] =
{ {
/* 0 */ {1, s_7_0, -1, 1, 0}, /* 0 */ { 2, s_7_0, -1, 1, 0},
/* 1 */ {1, s_7_1, -1, 2, 0} /* 1 */ { 4, s_7_1, -1, 1, 0},
/* 2 */ { 4, s_7_2, -1, 1, 0},
/* 3 */ { 4, s_7_3, -1, 1, 0},
/* 4 */ { 4, s_7_4, -1, 1, 0},
/* 5 */ { 3, s_7_5, -1, 1, 0},
/* 6 */ { 3, s_7_6, -1, 1, 0},
/* 7 */ { 3, s_7_7, -1, 1, 0},
/* 8 */ { 3, s_7_8, -1, 1, 0},
/* 9 */ { 2, s_7_9, -1, 1, 0},
/* 10 */ { 3, s_7_10, -1, 1, 0},
/* 11 */ { 3, s_7_11, -1, 2, 0},
/* 12 */ { 2, s_7_12, -1, 1, 0},
/* 13 */ { 3, s_7_13, -1, 1, 0},
/* 14 */ { 3, s_7_14, -1, 1, 0},
/* 15 */ { 3, s_7_15, -1, 1, 0},
/* 16 */ { 4, s_7_16, 15, 1, 0},
/* 17 */ { 5, s_7_17, 16, 1, 0}
}; };
static symbol s_8_0[7] = {'s', 'u', 'c', 'c', 'e', 'e', 'd'}; static symbol s_8_0[1] = { 'e' };
static symbol s_8_1[7] = {'p', 'r', 'o', 'c', 'e', 'e', 'd'}; static symbol s_8_1[1] = { 'l' };
static symbol s_8_2[6] = {'e', 'x', 'c', 'e', 'e', 'd'};
static symbol s_8_3[7] = {'c', 'a', 'n', 'n', 'i', 'n', 'g'};
static symbol s_8_4[6] = {'i', 'n', 'n', 'i', 'n', 'g'};
static symbol s_8_5[7] = {'e', 'a', 'r', 'r', 'i', 'n', 'g'};
static symbol s_8_6[7] = {'h', 'e', 'r', 'r', 'i', 'n', 'g'};
static symbol s_8_7[6] = {'o', 'u', 't', 'i', 'n', 'g'};
static struct among a_8[8] = static struct among a_8[2] =
{ {
/* 0 */ {7, s_8_0, -1, -1, 0}, /* 0 */ { 1, s_8_0, -1, 1, 0},
/* 1 */ {7, s_8_1, -1, -1, 0}, /* 1 */ { 1, s_8_1, -1, 2, 0}
/* 2 */ {6, s_8_2, -1, -1, 0},
/* 3 */ {7, s_8_3, -1, -1, 0},
/* 4 */ {6, s_8_4, -1, -1, 0},
/* 5 */ {7, s_8_5, -1, -1, 0},
/* 6 */ {7, s_8_6, -1, -1, 0},
/* 7 */ {6, s_8_7, -1, -1, 0}
}; };
static symbol s_9_0[5] = {'a', 'n', 'd', 'e', 's'}; static symbol s_9_0[7] = { 's', 'u', 'c', 'c', 'e', 'e', 'd' };
static symbol s_9_1[5] = {'a', 't', 'l', 'a', 's'}; static symbol s_9_1[7] = { 'p', 'r', 'o', 'c', 'e', 'e', 'd' };
static symbol s_9_2[4] = {'b', 'i', 'a', 's'}; static symbol s_9_2[6] = { 'e', 'x', 'c', 'e', 'e', 'd' };
static symbol s_9_3[6] = {'c', 'o', 's', 'm', 'o', 's'}; static symbol s_9_3[7] = { 'c', 'a', 'n', 'n', 'i', 'n', 'g' };
static symbol s_9_4[5] = {'d', 'y', 'i', 'n', 'g'}; static symbol s_9_4[6] = { 'i', 'n', 'n', 'i', 'n', 'g' };
static symbol s_9_5[5] = {'e', 'a', 'r', 'l', 'y'}; static symbol s_9_5[7] = { 'e', 'a', 'r', 'r', 'i', 'n', 'g' };
static symbol s_9_6[6] = {'g', 'e', 'n', 't', 'l', 'y'}; static symbol s_9_6[7] = { 'h', 'e', 'r', 'r', 'i', 'n', 'g' };
static symbol s_9_7[4] = {'h', 'o', 'w', 'e'}; static symbol s_9_7[6] = { 'o', 'u', 't', 'i', 'n', 'g' };
static symbol s_9_8[4] = {'i', 'd', 'l', 'y'};
static symbol s_9_9[5] = {'l', 'y', 'i', 'n', 'g'};
static symbol s_9_10[4] = {'n', 'e', 'w', 's'};
static symbol s_9_11[4] = {'o', 'n', 'l', 'y'};
static symbol s_9_12[6] = {'s', 'i', 'n', 'g', 'l', 'y'};
static symbol s_9_13[5] = {'s', 'k', 'i', 'e', 's'};
static symbol s_9_14[4] = {'s', 'k', 'i', 's'};
static symbol s_9_15[3] = {'s', 'k', 'y'};
static symbol s_9_16[5] = {'t', 'y', 'i', 'n', 'g'};
static symbol s_9_17[4] = {'u', 'g', 'l', 'y'};
static struct among a_9[18] = static struct among a_9[8] =
{ {
/* 0 */ {5, s_9_0, -1, -1, 0}, /* 0 */ { 7, s_9_0, -1, -1, 0},
/* 1 */ {5, s_9_1, -1, -1, 0}, /* 1 */ { 7, s_9_1, -1, -1, 0},
/* 2 */ {4, s_9_2, -1, -1, 0}, /* 2 */ { 6, s_9_2, -1, -1, 0},
/* 3 */ {6, s_9_3, -1, -1, 0}, /* 3 */ { 7, s_9_3, -1, -1, 0},
/* 4 */ {5, s_9_4, -1, 3, 0}, /* 4 */ { 6, s_9_4, -1, -1, 0},
/* 5 */ {5, s_9_5, -1, 9, 0}, /* 5 */ { 7, s_9_5, -1, -1, 0},
/* 6 */ {6, s_9_6, -1, 7, 0}, /* 6 */ { 7, s_9_6, -1, -1, 0},
/* 7 */ {4, s_9_7, -1, -1, 0}, /* 7 */ { 6, s_9_7, -1, -1, 0}
/* 8 */ {4, s_9_8, -1, 6, 0},
/* 9 */ {5, s_9_9, -1, 4, 0},
/* 10 */ {4, s_9_10, -1, -1, 0},
/* 11 */ {4, s_9_11, -1, 10, 0},
/* 12 */ {6, s_9_12, -1, 11, 0},
/* 13 */ {5, s_9_13, -1, 2, 0},
/* 14 */ {4, s_9_14, -1, 1, 0},
/* 15 */ {3, s_9_15, -1, -1, 0},
/* 16 */ {5, s_9_16, -1, 5, 0},
/* 17 */ {4, s_9_17, -1, 8, 0}
}; };
static unsigned char g_v[] = {17, 65, 16, 1}; static symbol s_10_0[5] = { 'a', 'n', 'd', 'e', 's' };
static symbol s_10_1[5] = { 'a', 't', 'l', 'a', 's' };
static unsigned char g_v_WXY[] = {1, 17, 65, 208, 1}; static symbol s_10_2[4] = { 'b', 'i', 'a', 's' };
static symbol s_10_3[6] = { 'c', 'o', 's', 'm', 'o', 's' };
static unsigned char g_valid_LI[] = {55, 141, 2}; static symbol s_10_4[5] = { 'd', 'y', 'i', 'n', 'g' };
static symbol s_10_5[5] = { 'e', 'a', 'r', 'l', 'y' };
static symbol s_0[] = {'y'}; static symbol s_10_6[6] = { 'g', 'e', 'n', 't', 'l', 'y' };
static symbol s_1[] = {'Y'}; static symbol s_10_7[4] = { 'h', 'o', 'w', 'e' };
static symbol s_2[] = {'y'}; static symbol s_10_8[4] = { 'i', 'd', 'l', 'y' };
static symbol s_3[] = {'Y'}; static symbol s_10_9[5] = { 'l', 'y', 'i', 'n', 'g' };
static symbol s_4[] = {'s', 's'}; static symbol s_10_10[4] = { 'n', 'e', 'w', 's' };
static symbol s_5[] = {'i', 'e'}; static symbol s_10_11[4] = { 'o', 'n', 'l', 'y' };
static symbol s_6[] = {'i'}; static symbol s_10_12[6] = { 's', 'i', 'n', 'g', 'l', 'y' };
static symbol s_7[] = {'e', 'e'}; static symbol s_10_13[5] = { 's', 'k', 'i', 'e', 's' };
static symbol s_8[] = {'e'}; static symbol s_10_14[4] = { 's', 'k', 'i', 's' };
static symbol s_9[] = {'e'}; static symbol s_10_15[3] = { 's', 'k', 'y' };
static symbol s_10[] = {'y'}; static symbol s_10_16[5] = { 't', 'y', 'i', 'n', 'g' };
static symbol s_11[] = {'Y'}; static symbol s_10_17[4] = { 'u', 'g', 'l', 'y' };
static symbol s_12[] = {'i'};
static symbol s_13[] = {'t', 'i', 'o', 'n'}; static struct among a_10[18] =
static symbol s_14[] = {'e', 'n', 'c', 'e'};
static symbol s_15[] = {'a', 'n', 'c', 'e'};
static symbol s_16[] = {'a', 'b', 'l', 'e'};
static symbol s_17[] = {'e', 'n', 't'};
static symbol s_18[] = {'i', 'z', 'e'};
static symbol s_19[] = {'a', 't', 'e'};
static symbol s_20[] = {'a', 'l'};
static symbol s_21[] = {'f', 'u', 'l'};
static symbol s_22[] = {'o', 'u', 's'};
static symbol s_23[] = {'i', 'v', 'e'};
static symbol s_24[] = {'b', 'l', 'e'};
static symbol s_25[] = {'l'};
static symbol s_26[] = {'o', 'g'};
static symbol s_27[] = {'f', 'u', 'l'};
static symbol s_28[] = {'l', 'e', 's', 's'};
static symbol s_29[] = {'t', 'i', 'o', 'n'};
static symbol s_30[] = {'a', 't', 'e'};
static symbol s_31[] = {'a', 'l'};
static symbol s_32[] = {'i', 'c'};
static symbol s_33[] = {'s'};
static symbol s_34[] = {'t'};
static symbol s_35[] = {'l'};
static symbol s_36[] = {'s', 'k', 'i'};
static symbol s_37[] = {'s', 'k', 'y'};
static symbol s_38[] = {'d', 'i', 'e'};
static symbol s_39[] = {'l', 'i', 'e'};
static symbol s_40[] = {'t', 'i', 'e'};
static symbol s_41[] = {'i', 'd', 'l'};
static symbol s_42[] = {'g', 'e', 'n', 't', 'l'};
static symbol s_43[] = {'u', 'g', 'l', 'i'};
static symbol s_44[] = {'e', 'a', 'r', 'l', 'i'};
static symbol s_45[] = {'o', 'n', 'l', 'i'};
static symbol s_46[] = {'s', 'i', 'n', 'g', 'l'};
static symbol s_47[] = {'Y'};
static symbol s_48[] = {'y'};
static int
r_prelude(struct SN_env * z)
{ {
z->B[0] = 0; /* unset Y_found, line 24 */ /* 0 */ { 5, s_10_0, -1, -1, 0},
{ /* 1 */ { 5, s_10_1, -1, -1, 0},
int c = z->c; /* do, line 25 */ /* 2 */ { 4, s_10_2, -1, -1, 0},
/* 3 */ { 6, s_10_3, -1, -1, 0},
z->bra = z->c; /* [, line 25 */ /* 4 */ { 5, s_10_4, -1, 3, 0},
if (!(eq_s(z, 1, s_0))) /* 5 */ { 5, s_10_5, -1, 9, 0},
goto lab0; /* 6 */ { 6, s_10_6, -1, 7, 0},
z->ket = z->c; /* ], line 25 */ /* 7 */ { 4, s_10_7, -1, -1, 0},
if (!(in_grouping(z, g_v, 97, 121))) /* 8 */ { 4, s_10_8, -1, 6, 0},
goto lab0; /* 9 */ { 5, s_10_9, -1, 4, 0},
slice_from_s(z, 1, s_1); /* <-, line 25 */ /* 10 */ { 4, s_10_10, -1, -1, 0},
z->B[0] = 1; /* set Y_found, line 25 */ /* 11 */ { 4, s_10_11, -1, 10, 0},
lab0: /* 12 */ { 6, s_10_12, -1, 11, 0},
z->c = c; /* 13 */ { 5, s_10_13, -1, 2, 0},
} /* 14 */ { 4, s_10_14, -1, 1, 0},
{ /* 15 */ { 3, s_10_15, -1, -1, 0},
int c = z->c; /* do, line 26 */ /* 16 */ { 5, s_10_16, -1, 5, 0},
/* 17 */ { 4, s_10_17, -1, 8, 0}
while (1) };
{ /* repeat, line 26 */
int c = z->c;
while (1)
{ /* goto, line 26 */
int c = z->c;
if (!(in_grouping(z, g_v, 97, 121))) static unsigned char g_v[] = { 17, 65, 16, 1 };
goto lab3;
z->bra = z->c; /* [, line 26 */ static unsigned char g_v_WXY[] = { 1, 17, 65, 208, 1 };
if (!(eq_s(z, 1, s_2)))
goto lab3; static unsigned char g_valid_LI[] = { 55, 141, 2 };
z->ket = z->c; /* ], line 26 */
z->c = c; static symbol s_0[] = { '\'' };
break; static symbol s_1[] = { 'y' };
lab3: static symbol s_2[] = { 'Y' };
z->c = c; static symbol s_3[] = { 'y' };
if (z->c >= z->l) static symbol s_4[] = { 'Y' };
goto lab2; static symbol s_5[] = { 's', 's' };
z->c++; static symbol s_6[] = { 'i', 'e' };
} static symbol s_7[] = { 'i' };
slice_from_s(z, 1, s_3); /* <-, line 26 */ static symbol s_8[] = { 'e', 'e' };
z->B[0] = 1; /* set Y_found, line 26 */ static symbol s_9[] = { 'e' };
continue; static symbol s_10[] = { 'e' };
lab2: static symbol s_11[] = { 'y' };
z->c = c; static symbol s_12[] = { 'Y' };
break; static symbol s_13[] = { 'i' };
} static symbol s_14[] = { 't', 'i', 'o', 'n' };
z->c = c; static symbol s_15[] = { 'e', 'n', 'c', 'e' };
} static symbol s_16[] = { 'a', 'n', 'c', 'e' };
return 1; static symbol s_17[] = { 'a', 'b', 'l', 'e' };
static symbol s_18[] = { 'e', 'n', 't' };
static symbol s_19[] = { 'i', 'z', 'e' };
static symbol s_20[] = { 'a', 't', 'e' };
static symbol s_21[] = { 'a', 'l' };
static symbol s_22[] = { 'f', 'u', 'l' };
static symbol s_23[] = { 'o', 'u', 's' };
static symbol s_24[] = { 'i', 'v', 'e' };
static symbol s_25[] = { 'b', 'l', 'e' };
static symbol s_26[] = { 'l' };
static symbol s_27[] = { 'o', 'g' };
static symbol s_28[] = { 'f', 'u', 'l' };
static symbol s_29[] = { 'l', 'e', 's', 's' };
static symbol s_30[] = { 't', 'i', 'o', 'n' };
static symbol s_31[] = { 'a', 't', 'e' };
static symbol s_32[] = { 'a', 'l' };
static symbol s_33[] = { 'i', 'c' };
static symbol s_34[] = { 's' };
static symbol s_35[] = { 't' };
static symbol s_36[] = { 'l' };
static symbol s_37[] = { 's', 'k', 'i' };
static symbol s_38[] = { 's', 'k', 'y' };
static symbol s_39[] = { 'd', 'i', 'e' };
static symbol s_40[] = { 'l', 'i', 'e' };
static symbol s_41[] = { 't', 'i', 'e' };
static symbol s_42[] = { 'i', 'd', 'l' };
static symbol s_43[] = { 'g', 'e', 'n', 't', 'l' };
static symbol s_44[] = { 'u', 'g', 'l', 'i' };
static symbol s_45[] = { 'e', 'a', 'r', 'l', 'i' };
static symbol s_46[] = { 'o', 'n', 'l', 'i' };
static symbol s_47[] = { 's', 'i', 'n', 'g', 'l' };
static symbol s_48[] = { 'Y' };
static symbol s_49[] = { 'y' };
static int r_prelude(struct SN_env * z) {
z->B[0] = 0; /* unset Y_found, line 26 */
{ int c = z->c; /* do, line 27 */
z->bra = z->c; /* [, line 27 */
if (!(eq_s(z, 1, s_0))) goto lab0;
z->ket = z->c; /* ], line 27 */
{ int ret;
ret = slice_del(z); /* delete, line 27 */
if (ret < 0) return ret;
}
lab0:
z->c = c;
}
{ int c = z->c; /* do, line 28 */
z->bra = z->c; /* [, line 28 */
if (!(eq_s(z, 1, s_1))) goto lab1;
z->ket = z->c; /* ], line 28 */
if (!(in_grouping(z, g_v, 97, 121))) goto lab1;
{ int ret;
ret = slice_from_s(z, 1, s_2); /* <-, line 28 */
if (ret < 0) return ret;
}
z->B[0] = 1; /* set Y_found, line 28 */
lab1:
z->c = c;
}
{ int c = z->c; /* do, line 29 */
while(1) { /* repeat, line 29 */
int c = z->c;
while(1) { /* goto, line 29 */
int c = z->c;
if (!(in_grouping(z, g_v, 97, 121))) goto lab4;
z->bra = z->c; /* [, line 29 */
if (!(eq_s(z, 1, s_3))) goto lab4;
z->ket = z->c; /* ], line 29 */
z->c = c;
break;
lab4:
z->c = c;
if (z->c >= z->l) goto lab3;
z->c++; /* goto, line 29 */
}
{ int ret;
ret = slice_from_s(z, 1, s_4); /* <-, line 29 */
if (ret < 0) return ret;
}
z->B[0] = 1; /* set Y_found, line 29 */
continue;
lab3:
z->c = c;
break;
}
z->c = c;
}
return 1;
} }
static int static int r_mark_regions(struct SN_env * z) {
r_mark_regions(struct SN_env * z) z->I[0] = z->l;
{ z->I[1] = z->l;
z->I[0] = z->l; { int c = z->c; /* do, line 35 */
z->I[1] = z->l; { int c = z->c; /* or, line 40 */
{ if (!(find_among(z, a_0, 2))) goto lab2; /* among, line 36 */
int c = z->c; /* do, line 32 */ goto lab1;
lab2:
{ z->c = c;
int c = z->c; /* or, line 36 */ while(1) { /* gopast, line 40 */
if (!(in_grouping(z, g_v, 97, 121))) goto lab3;
if (!(find_among(z, a_0, 1))) break;
goto lab2; /* among, line 33 */ lab3:
goto lab1; if (z->c >= z->l) goto lab0;
lab2: z->c++; /* gopast, line 40 */
z->c = c; }
while (1) while(1) { /* gopast, line 40 */
{ /* gopast, line 36 */ if (!(out_grouping(z, g_v, 97, 121))) goto lab4;
if (!(in_grouping(z, g_v, 97, 121))) break;
goto lab3; lab4:
break; if (z->c >= z->l) goto lab0;
lab3: z->c++; /* gopast, line 40 */
if (z->c >= z->l) }
goto lab0; }
z->c++; lab1:
} z->I[0] = z->c; /* setmark p1, line 41 */
while (1) while(1) { /* gopast, line 42 */
{ /* gopast, line 36 */ if (!(in_grouping(z, g_v, 97, 121))) goto lab5;
if (!(out_grouping(z, g_v, 97, 121))) break;
goto lab4; lab5:
break; if (z->c >= z->l) goto lab0;
lab4: z->c++; /* gopast, line 42 */
if (z->c >= z->l) }
goto lab0; while(1) { /* gopast, line 42 */
z->c++; if (!(out_grouping(z, g_v, 97, 121))) goto lab6;
} break;
} lab6:
lab1: if (z->c >= z->l) goto lab0;
z->I[0] = z->c; /* setmark p1, line 37 */ z->c++; /* gopast, line 42 */
while (1) }
{ /* gopast, line 38 */ z->I[1] = z->c; /* setmark p2, line 42 */
if (!(in_grouping(z, g_v, 97, 121))) lab0:
goto lab5; z->c = c;
break; }
lab5: return 1;
if (z->c >= z->l)
goto lab0;
z->c++;
}
while (1)
{ /* gopast, line 38 */
if (!(out_grouping(z, g_v, 97, 121)))
goto lab6;
break;
lab6:
if (z->c >= z->l)
goto lab0;
z->c++;
}
z->I[1] = z->c; /* setmark p2, line 38 */
lab0:
z->c = c;
}
return 1;
} }
static int static int r_shortv(struct SN_env * z) {
r_shortv(struct SN_env * z) { int m = z->l - z->c; (void) m; /* or, line 50 */
{ if (!(out_grouping_b(z, g_v_WXY, 89, 121))) goto lab1;
{ if (!(in_grouping_b(z, g_v, 97, 121))) goto lab1;
int m = z->l - z->c; /* or, line 46 */ if (!(out_grouping_b(z, g_v, 97, 121))) goto lab1;
goto lab0;
if (!(out_grouping_b(z, g_v_WXY, 89, 121))) lab1:
goto lab1; z->c = z->l - m;
if (!(in_grouping_b(z, g_v, 97, 121))) if (!(out_grouping_b(z, g_v, 97, 121))) return 0;
goto lab1; if (!(in_grouping_b(z, g_v, 97, 121))) return 0;
if (!(out_grouping_b(z, g_v, 97, 121))) if (z->c > z->lb) return 0; /* atlimit, line 51 */
goto lab1; }
goto lab0;
lab1:
z->c = z->l - m;
if (!(out_grouping_b(z, g_v, 97, 121)))
return 0;
if (!(in_grouping_b(z, g_v, 97, 121)))
return 0;
if (z->c > z->lb)
return 0; /* atlimit, line 47 */
}
lab0: lab0:
return 1; return 1;
} }
static int static int r_R1(struct SN_env * z) {
r_R1(struct SN_env * z) if (!(z->I[0] <= z->c)) return 0;
{ return 1;
if (!(z->I[0] <= z->c))
return 0;
return 1;
} }
static int static int r_R2(struct SN_env * z) {
r_R2(struct SN_env * z) if (!(z->I[1] <= z->c)) return 0;
{ return 1;
if (!(z->I[1] <= z->c))
return 0;
return 1;
} }
static int static int r_Step_1a(struct SN_env * z) {
r_Step_1a(struct SN_env * z) int among_var;
{ { int m = z->l - z->c; (void) m; /* try, line 58 */
int among_var; z->ket = z->c; /* [, line 59 */
among_var = find_among_b(z, a_1, 3); /* substring, line 59 */
z->ket = z->c; /* [, line 54 */ if (!(among_var)) { z->c = z->l - m; goto lab0; }
among_var = find_among_b(z, a_1, 6); /* substring, line 54 */ z->bra = z->c; /* ], line 59 */
if (!(among_var)) switch(among_var) {
return 0; case 0: { z->c = z->l - m; goto lab0; }
z->bra = z->c; /* ], line 54 */ case 1:
switch (among_var) { int ret;
{ ret = slice_del(z); /* delete, line 61 */
case 0: if (ret < 0) return ret;
return 0; }
case 1: break;
slice_from_s(z, 2, s_4); /* <-, line 55 */ }
break; lab0:
case 2: ;
{ }
int m = z->l - z->c; /* or, line 57 */ z->ket = z->c; /* [, line 64 */
among_var = find_among_b(z, a_2, 6); /* substring, line 64 */
if (z->c <= z->lb) if (!(among_var)) return 0;
goto lab1; z->bra = z->c; /* ], line 64 */
z->c--; /* next, line 57 */ switch(among_var) {
if (z->c > z->lb) case 0: return 0;
goto lab1; /* atlimit, line 57 */ case 1:
slice_from_s(z, 2, s_5); /* <-, line 57 */ { int ret;
goto lab0; ret = slice_from_s(z, 2, s_5); /* <-, line 65 */
lab1: if (ret < 0) return ret;
z->c = z->l - m; }
slice_from_s(z, 1, s_6); /* <-, line 57 */ break;
} case 2:
lab0: { int m = z->l - z->c; (void) m; /* or, line 67 */
break; if (z->c <= z->lb) goto lab2;
case 3: z->c--; /* next, line 67 */
if (z->c <= z->lb) if (z->c > z->lb) goto lab2; /* atlimit, line 67 */
return 0; { int ret;
z->c--; /* next, line 58 */ ret = slice_from_s(z, 2, s_6); /* <-, line 67 */
while (1) if (ret < 0) return ret;
{ /* gopast, line 58 */ }
if (!(in_grouping_b(z, g_v, 97, 121))) goto lab1;
goto lab2; lab2:
break; z->c = z->l - m;
lab2: { int ret;
if (z->c <= z->lb) ret = slice_from_s(z, 1, s_7); /* <-, line 67 */
return 0; if (ret < 0) return ret;
z->c--; }
} }
slice_del(z); /* delete, line 58 */ lab1:
break; break;
} case 3:
return 1; if (z->c <= z->lb) return 0;
z->c--; /* next, line 68 */
while(1) { /* gopast, line 68 */
if (!(in_grouping_b(z, g_v, 97, 121))) goto lab3;
break;
lab3:
if (z->c <= z->lb) return 0;
z->c--; /* gopast, line 68 */
}
{ int ret;
ret = slice_del(z); /* delete, line 68 */
if (ret < 0) return ret;
}
break;
}
return 1;
} }
static int static int r_Step_1b(struct SN_env * z) {
r_Step_1b(struct SN_env * z) int among_var;
{ z->ket = z->c; /* [, line 74 */
int among_var; among_var = find_among_b(z, a_4, 6); /* substring, line 74 */
if (!(among_var)) return 0;
z->ket = z->c; /* [, line 64 */ z->bra = z->c; /* ], line 74 */
among_var = find_among_b(z, a_3, 6); /* substring, line 64 */ switch(among_var) {
if (!(among_var)) case 0: return 0;
return 0; case 1:
z->bra = z->c; /* ], line 64 */ { int ret = r_R1(z);
switch (among_var) if (ret == 0) return 0; /* call R1, line 76 */
{ if (ret < 0) return ret;
case 0: }
return 0; { int ret;
case 1: ret = slice_from_s(z, 2, s_8); /* <-, line 76 */
if (!r_R1(z)) if (ret < 0) return ret;
return 0; /* call R1, line 66 */ }
slice_from_s(z, 2, s_7); /* <-, line 66 */ break;
break; case 2:
case 2: { int m_test = z->l - z->c; /* test, line 79 */
{ while(1) { /* gopast, line 79 */
int m_test = z->l - z->c; /* test, line 69 */ if (!(in_grouping_b(z, g_v, 97, 121))) goto lab0;
break;
while (1) lab0:
{ /* gopast, line 69 */ if (z->c <= z->lb) return 0;
if (!(in_grouping_b(z, g_v, 97, 121))) z->c--; /* gopast, line 79 */
goto lab0; }
break; z->c = z->l - m_test;
lab0: }
if (z->c <= z->lb) { int ret;
return 0; ret = slice_del(z); /* delete, line 79 */
z->c--; if (ret < 0) return ret;
} }
z->c = z->l - m_test; { int m_test = z->l - z->c; /* test, line 80 */
} among_var = find_among_b(z, a_3, 13); /* substring, line 80 */
slice_del(z); /* delete, line 69 */ if (!(among_var)) return 0;
{ z->c = z->l - m_test;
int m_test = z->l - z->c; /* test, line 70 */ }
switch(among_var) {
among_var = find_among_b(z, a_2, 13); /* substring, line 70 */ case 0: return 0;
if (!(among_var)) case 1:
return 0; { int ret;
z->c = z->l - m_test; { int c = z->c;
} ret = insert_s(z, z->c, z->c, 1, s_9); /* <+, line 82 */
switch (among_var) z->c = c;
{ }
case 0: if (ret < 0) return ret;
return 0; }
case 1: break;
{ case 2:
int c = z->c; z->ket = z->c; /* [, line 85 */
if (z->c <= z->lb) return 0;
insert_s(z, z->c, z->c, 1, s_8); /* <+, line 72 */ z->c--; /* next, line 85 */
z->c = c; z->bra = z->c; /* ], line 85 */
} { int ret;
break; ret = slice_del(z); /* delete, line 85 */
case 2: if (ret < 0) return ret;
z->ket = z->c; /* [, line 75 */ }
if (z->c <= z->lb) break;
return 0; case 3:
z->c--; /* next, line 75 */ if (z->c != z->I[0]) return 0; /* atmark, line 86 */
z->bra = z->c; /* ], line 75 */ { int m_test = z->l - z->c; /* test, line 86 */
slice_del(z); /* delete, line 75 */ { int ret = r_shortv(z);
break; if (ret == 0) return 0; /* call shortv, line 86 */
case 3: if (ret < 0) return ret;
if (z->c != z->I[0]) }
return 0; /* atmark, line 76 */ z->c = z->l - m_test;
{ }
int m_test = z->l - z->c; /* test, line 76 */ { int ret;
{ int c = z->c;
if (!r_shortv(z)) ret = insert_s(z, z->c, z->c, 1, s_10); /* <+, line 86 */
return 0; /* call shortv, line 76 */ z->c = c;
z->c = z->l - m_test; }
} if (ret < 0) return ret;
{ }
int c = z->c; break;
}
insert_s(z, z->c, z->c, 1, s_9); /* <+, line 76 */ break;
z->c = c; }
} return 1;
break;
}
break;
}
return 1;
} }
static int static int r_Step_1c(struct SN_env * z) {
r_Step_1c(struct SN_env * z) z->ket = z->c; /* [, line 93 */
{ { int m = z->l - z->c; (void) m; /* or, line 93 */
z->ket = z->c; /* [, line 83 */ if (!(eq_s_b(z, 1, s_11))) goto lab1;
{ goto lab0;
int m = z->l - z->c; /* or, line 83 */ lab1:
z->c = z->l - m;
if (!(eq_s_b(z, 1, s_10))) if (!(eq_s_b(z, 1, s_12))) return 0;
goto lab1; }
goto lab0;
lab1:
z->c = z->l - m;
if (!(eq_s_b(z, 1, s_11)))
return 0;
}
lab0: lab0:
z->bra = z->c; /* ], line 83 */ z->bra = z->c; /* ], line 93 */
if (!(out_grouping_b(z, g_v, 97, 121))) if (!(out_grouping_b(z, g_v, 97, 121))) return 0;
return 0; { int m = z->l - z->c; (void) m; /* not, line 94 */
{ if (z->c > z->lb) goto lab2; /* atlimit, line 94 */
int m = z->l - z->c; /* not, line 84 */ return 0;
lab2:
if (z->c > z->lb) z->c = z->l - m;
goto lab2; /* atlimit, line 84 */ }
return 0; { int ret;
lab2: ret = slice_from_s(z, 1, s_13); /* <-, line 95 */
z->c = z->l - m; if (ret < 0) return ret;
} }
slice_from_s(z, 1, s_12); /* <-, line 85 */ return 1;
return 1;
} }
static int static int r_Step_2(struct SN_env * z) {
r_Step_2(struct SN_env * z) int among_var;
{ z->ket = z->c; /* [, line 99 */
int among_var; among_var = find_among_b(z, a_5, 24); /* substring, line 99 */
if (!(among_var)) return 0;
z->ket = z->c; /* [, line 89 */ z->bra = z->c; /* ], line 99 */
among_var = find_among_b(z, a_4, 24); /* substring, line 89 */ { int ret = r_R1(z);
if (!(among_var)) if (ret == 0) return 0; /* call R1, line 99 */
return 0; if (ret < 0) return ret;
z->bra = z->c; /* ], line 89 */ }
if (!r_R1(z)) switch(among_var) {
return 0; /* call R1, line 89 */ case 0: return 0;
switch (among_var) case 1:
{ { int ret;
case 0: ret = slice_from_s(z, 4, s_14); /* <-, line 100 */
return 0; if (ret < 0) return ret;
case 1: }
slice_from_s(z, 4, s_13); /* <-, line 90 */ break;
break; case 2:
case 2: { int ret;
slice_from_s(z, 4, s_14); /* <-, line 91 */ ret = slice_from_s(z, 4, s_15); /* <-, line 101 */
break; if (ret < 0) return ret;
case 3: }
slice_from_s(z, 4, s_15); /* <-, line 92 */ break;
break; case 3:
case 4: { int ret;
slice_from_s(z, 4, s_16); /* <-, line 93 */ ret = slice_from_s(z, 4, s_16); /* <-, line 102 */
break; if (ret < 0) return ret;
case 5: }
slice_from_s(z, 3, s_17); /* <-, line 94 */ break;
break; case 4:
case 6: { int ret;
slice_from_s(z, 3, s_18); /* <-, line 96 */ ret = slice_from_s(z, 4, s_17); /* <-, line 103 */
break; if (ret < 0) return ret;
case 7: }
slice_from_s(z, 3, s_19); /* <-, line 98 */ break;
break; case 5:
case 8: { int ret;
slice_from_s(z, 2, s_20); /* <-, line 100 */ ret = slice_from_s(z, 3, s_18); /* <-, line 104 */
break; if (ret < 0) return ret;
case 9: }
slice_from_s(z, 3, s_21); /* <-, line 101 */ break;
break; case 6:
case 10: { int ret;
slice_from_s(z, 3, s_22); /* <-, line 103 */ ret = slice_from_s(z, 3, s_19); /* <-, line 106 */
break; if (ret < 0) return ret;
case 11: }
slice_from_s(z, 3, s_23); /* <-, line 105 */ break;
break; case 7:
case 12: { int ret;
slice_from_s(z, 3, s_24); /* <-, line 107 */ ret = slice_from_s(z, 3, s_20); /* <-, line 108 */
break; if (ret < 0) return ret;
case 13: }
if (!(eq_s_b(z, 1, s_25))) break;
return 0; case 8:
slice_from_s(z, 2, s_26); /* <-, line 108 */ { int ret;
break; ret = slice_from_s(z, 2, s_21); /* <-, line 110 */
case 14: if (ret < 0) return ret;
slice_from_s(z, 3, s_27); /* <-, line 109 */ }
break; break;
case 15: case 9:
slice_from_s(z, 4, s_28); /* <-, line 110 */ { int ret;
break; ret = slice_from_s(z, 3, s_22); /* <-, line 111 */
case 16: if (ret < 0) return ret;
if (!(in_grouping_b(z, g_valid_LI, 99, 116))) }
return 0; break;
slice_del(z); /* delete, line 111 */ case 10:
break; { int ret;
} ret = slice_from_s(z, 3, s_23); /* <-, line 113 */
return 1; if (ret < 0) return ret;
}
break;
case 11:
{ int ret;
ret = slice_from_s(z, 3, s_24); /* <-, line 115 */
if (ret < 0) return ret;
}
break;
case 12:
{ int ret;
ret = slice_from_s(z, 3, s_25); /* <-, line 117 */
if (ret < 0) return ret;
}
break;
case 13:
if (!(eq_s_b(z, 1, s_26))) return 0;
{ int ret;
ret = slice_from_s(z, 2, s_27); /* <-, line 118 */
if (ret < 0) return ret;
}
break;
case 14:
{ int ret;
ret = slice_from_s(z, 3, s_28); /* <-, line 119 */
if (ret < 0) return ret;
}
break;
case 15:
{ int ret;
ret = slice_from_s(z, 4, s_29); /* <-, line 120 */
if (ret < 0) return ret;
}
break;
case 16:
if (!(in_grouping_b(z, g_valid_LI, 99, 116))) return 0;
{ int ret;
ret = slice_del(z); /* delete, line 121 */
if (ret < 0) return ret;
}
break;
}
return 1;
} }
static int static int r_Step_3(struct SN_env * z) {
r_Step_3(struct SN_env * z) int among_var;
{ z->ket = z->c; /* [, line 126 */
int among_var; among_var = find_among_b(z, a_6, 9); /* substring, line 126 */
if (!(among_var)) return 0;
z->ket = z->c; /* [, line 116 */ z->bra = z->c; /* ], line 126 */
among_var = find_among_b(z, a_5, 9); /* substring, line 116 */ { int ret = r_R1(z);
if (!(among_var)) if (ret == 0) return 0; /* call R1, line 126 */
return 0; if (ret < 0) return ret;
z->bra = z->c; /* ], line 116 */ }
if (!r_R1(z)) switch(among_var) {
return 0; /* call R1, line 116 */ case 0: return 0;
switch (among_var) case 1:
{ { int ret;
case 0: ret = slice_from_s(z, 4, s_30); /* <-, line 127 */
return 0; if (ret < 0) return ret;
case 1: }
slice_from_s(z, 4, s_29); /* <-, line 117 */ break;
break; case 2:
case 2: { int ret;
slice_from_s(z, 3, s_30); /* <-, line 118 */ ret = slice_from_s(z, 3, s_31); /* <-, line 128 */
break; if (ret < 0) return ret;
case 3: }
slice_from_s(z, 2, s_31); /* <-, line 119 */ break;
break; case 3:
case 4: { int ret;
slice_from_s(z, 2, s_32); /* <-, line 121 */ ret = slice_from_s(z, 2, s_32); /* <-, line 129 */
break; if (ret < 0) return ret;
case 5: }
slice_del(z); /* delete, line 123 */ break;
break; case 4:
case 6: { int ret;
if (!r_R2(z)) ret = slice_from_s(z, 2, s_33); /* <-, line 131 */
return 0; /* call R2, line 125 */ if (ret < 0) return ret;
slice_del(z); /* delete, line 125 */ }
break; break;
} case 5:
return 1; { int ret;
ret = slice_del(z); /* delete, line 133 */
if (ret < 0) return ret;
}
break;
case 6:
{ int ret = r_R2(z);
if (ret == 0) return 0; /* call R2, line 135 */
if (ret < 0) return ret;
}
{ int ret;
ret = slice_del(z); /* delete, line 135 */
if (ret < 0) return ret;
}
break;
}
return 1;
} }
static int static int r_Step_4(struct SN_env * z) {
r_Step_4(struct SN_env * z) int among_var;
{ z->ket = z->c; /* [, line 140 */
int among_var; among_var = find_among_b(z, a_7, 18); /* substring, line 140 */
if (!(among_var)) return 0;
z->ket = z->c; /* [, line 130 */ z->bra = z->c; /* ], line 140 */
among_var = find_among_b(z, a_6, 18); /* substring, line 130 */ { int ret = r_R2(z);
if (!(among_var)) if (ret == 0) return 0; /* call R2, line 140 */
return 0; if (ret < 0) return ret;
z->bra = z->c; /* ], line 130 */ }
if (!r_R2(z)) switch(among_var) {
return 0; /* call R2, line 130 */ case 0: return 0;
switch (among_var) case 1:
{ { int ret;
case 0: ret = slice_del(z); /* delete, line 143 */
return 0; if (ret < 0) return ret;
case 1: }
slice_del(z); /* delete, line 133 */ break;
break; case 2:
case 2: { int m = z->l - z->c; (void) m; /* or, line 144 */
{ if (!(eq_s_b(z, 1, s_34))) goto lab1;
int m = z->l - z->c; /* or, line 134 */ goto lab0;
lab1:
if (!(eq_s_b(z, 1, s_33))) z->c = z->l - m;
goto lab1; if (!(eq_s_b(z, 1, s_35))) return 0;
goto lab0; }
lab1: lab0:
z->c = z->l - m; { int ret;
if (!(eq_s_b(z, 1, s_34))) ret = slice_del(z); /* delete, line 144 */
return 0; if (ret < 0) return ret;
} }
lab0: break;
slice_del(z); /* delete, line 134 */ }
break; return 1;
}
return 1;
} }
static int static int r_Step_5(struct SN_env * z) {
r_Step_5(struct SN_env * z) int among_var;
{ z->ket = z->c; /* [, line 149 */
int among_var; among_var = find_among_b(z, a_8, 2); /* substring, line 149 */
if (!(among_var)) return 0;
z->ket = z->c; /* [, line 139 */ z->bra = z->c; /* ], line 149 */
among_var = find_among_b(z, a_7, 2); /* substring, line 139 */ switch(among_var) {
if (!(among_var)) case 0: return 0;
return 0; case 1:
z->bra = z->c; /* ], line 139 */ { int m = z->l - z->c; (void) m; /* or, line 150 */
switch (among_var) { int ret = r_R2(z);
{ if (ret == 0) goto lab1; /* call R2, line 150 */
case 0: if (ret < 0) return ret;
return 0; }
case 1: goto lab0;
{ lab1:
int m = z->l - z->c; /* or, line 140 */ z->c = z->l - m;
{ int ret = r_R1(z);
if (!r_R2(z)) if (ret == 0) return 0; /* call R1, line 150 */
goto lab1; /* call R2, line 140 */ if (ret < 0) return ret;
goto lab0; }
lab1: { int m = z->l - z->c; (void) m; /* not, line 150 */
z->c = z->l - m; { int ret = r_shortv(z);
if (!r_R1(z)) if (ret == 0) goto lab2; /* call shortv, line 150 */
return 0; /* call R1, line 140 */ if (ret < 0) return ret;
{ }
int m = z->l - z->c; /* not, line 140 */ return 0;
lab2:
if (!r_shortv(z)) z->c = z->l - m;
goto lab2; /* call shortv, line 140 */ }
return 0; }
lab2: lab0:
z->c = z->l - m; { int ret;
} ret = slice_del(z); /* delete, line 150 */
} if (ret < 0) return ret;
lab0: }
slice_del(z); /* delete, line 140 */ break;
break; case 2:
case 2: { int ret = r_R2(z);
if (!r_R2(z)) if (ret == 0) return 0; /* call R2, line 151 */
return 0; /* call R2, line 141 */ if (ret < 0) return ret;
if (!(eq_s_b(z, 1, s_35))) }
return 0; if (!(eq_s_b(z, 1, s_36))) return 0;
slice_del(z); /* delete, line 141 */ { int ret;
break; ret = slice_del(z); /* delete, line 151 */
} if (ret < 0) return ret;
return 1; }
break;
}
return 1;
} }
static int static int r_exception2(struct SN_env * z) {
r_exception2(struct SN_env * z) z->ket = z->c; /* [, line 157 */
{ if (!(find_among_b(z, a_9, 8))) return 0; /* substring, line 157 */
z->ket = z->c; /* [, line 147 */ z->bra = z->c; /* ], line 157 */
if (!(find_among_b(z, a_8, 8))) if (z->c > z->lb) return 0; /* atlimit, line 157 */
return 0; /* substring, line 147 */ return 1;
z->bra = z->c; /* ], line 147 */
if (z->c > z->lb)
return 0; /* atlimit, line 147 */
return 1;
} }
static int static int r_exception1(struct SN_env * z) {
r_exception1(struct SN_env * z) int among_var;
{ z->bra = z->c; /* [, line 169 */
int among_var; among_var = find_among(z, a_10, 18); /* substring, line 169 */
if (!(among_var)) return 0;
z->bra = z->c; /* [, line 159 */ z->ket = z->c; /* ], line 169 */
among_var = find_among(z, a_9, 18); /* substring, line 159 */ if (z->c < z->l) return 0; /* atlimit, line 169 */
if (!(among_var)) switch(among_var) {
return 0; case 0: return 0;
z->ket = z->c; /* ], line 159 */ case 1:
if (z->c < z->l) { int ret;
return 0; /* atlimit, line 159 */ ret = slice_from_s(z, 3, s_37); /* <-, line 173 */
switch (among_var) if (ret < 0) return ret;
{ }
case 0: break;
return 0; case 2:
case 1: { int ret;
slice_from_s(z, 3, s_36); /* <-, line 163 */ ret = slice_from_s(z, 3, s_38); /* <-, line 174 */
break; if (ret < 0) return ret;
case 2: }
slice_from_s(z, 3, s_37); /* <-, line 164 */ break;
break; case 3:
case 3: { int ret;
slice_from_s(z, 3, s_38); /* <-, line 165 */ ret = slice_from_s(z, 3, s_39); /* <-, line 175 */
break; if (ret < 0) return ret;
case 4: }
slice_from_s(z, 3, s_39); /* <-, line 166 */ break;
break; case 4:
case 5: { int ret;
slice_from_s(z, 3, s_40); /* <-, line 167 */ ret = slice_from_s(z, 3, s_40); /* <-, line 176 */
break; if (ret < 0) return ret;
case 6: }
slice_from_s(z, 3, s_41); /* <-, line 171 */ break;
break; case 5:
case 7: { int ret;
slice_from_s(z, 5, s_42); /* <-, line 172 */ ret = slice_from_s(z, 3, s_41); /* <-, line 177 */
break; if (ret < 0) return ret;
case 8: }
slice_from_s(z, 4, s_43); /* <-, line 173 */ break;
break; case 6:
case 9: { int ret;
slice_from_s(z, 5, s_44); /* <-, line 174 */ ret = slice_from_s(z, 3, s_42); /* <-, line 181 */
break; if (ret < 0) return ret;
case 10: }
slice_from_s(z, 4, s_45); /* <-, line 175 */ break;
break; case 7:
case 11: { int ret;
slice_from_s(z, 5, s_46); /* <-, line 176 */ ret = slice_from_s(z, 5, s_43); /* <-, line 182 */
break; if (ret < 0) return ret;
} }
return 1; break;
case 8:
{ int ret;
ret = slice_from_s(z, 4, s_44); /* <-, line 183 */
if (ret < 0) return ret;
}
break;
case 9:
{ int ret;
ret = slice_from_s(z, 5, s_45); /* <-, line 184 */
if (ret < 0) return ret;
}
break;
case 10:
{ int ret;
ret = slice_from_s(z, 4, s_46); /* <-, line 185 */
if (ret < 0) return ret;
}
break;
case 11:
{ int ret;
ret = slice_from_s(z, 5, s_47); /* <-, line 186 */
if (ret < 0) return ret;
}
break;
}
return 1;
} }
static int static int r_postlude(struct SN_env * z) {
r_postlude(struct SN_env * z) if (!(z->B[0])) return 0; /* Boolean test Y_found, line 202 */
{ while(1) { /* repeat, line 202 */
if (!(z->B[0])) int c = z->c;
return 0; /* Boolean test Y_found, line 192 */ while(1) { /* goto, line 202 */
while (1) int c = z->c;
{ /* repeat, line 192 */ z->bra = z->c; /* [, line 202 */
int c = z->c; if (!(eq_s(z, 1, s_48))) goto lab1;
z->ket = z->c; /* ], line 202 */
while (1) z->c = c;
{ /* goto, line 192 */ break;
int c = z->c; lab1:
z->c = c;
z->bra = z->c; /* [, line 192 */ if (z->c >= z->l) goto lab0;
if (!(eq_s(z, 1, s_47))) z->c++; /* goto, line 202 */
goto lab1; }
z->ket = z->c; /* ], line 192 */ { int ret;
z->c = c; ret = slice_from_s(z, 1, s_49); /* <-, line 202 */
break; if (ret < 0) return ret;
lab1: }
z->c = c; continue;
if (z->c >= z->l) lab0:
goto lab0; z->c = c;
z->c++; break;
} }
slice_from_s(z, 1, s_48); /* <-, line 192 */ return 1;
continue;
lab0:
z->c = c;
break;
}
return 1;
} }
extern int extern int english_ISO_8859_1_stem(struct SN_env * z) {
english_stem(struct SN_env * z) { int c = z->c; /* or, line 206 */
{ { int ret = r_exception1(z);
{ if (ret == 0) goto lab1; /* call exception1, line 206 */
int c = z->c; /* or, line 196 */ if (ret < 0) return ret;
}
if (!r_exception1(z)) goto lab0;
goto lab1; /* call exception1, line 196 */ lab1:
goto lab0; z->c = c;
lab1: { int c = z->c; /* not, line 207 */
z->c = c; { int c = z->c + 3;
{ if (0 > c || c > z->l) goto lab3;
int c_test = z->c; /* test, line 198 */ z->c = c; /* hop, line 207 */
}
{ goto lab2;
int c = z->c + 3; lab3:
z->c = c;
if (0 > c || c > z->l) }
return 0; goto lab0;
z->c = c; /* hop, line 198 */ lab2:
} z->c = c;
z->c = c_test; { int c = z->c; /* do, line 208 */
} { int ret = r_prelude(z);
{ if (ret == 0) goto lab4; /* call prelude, line 208 */
int c = z->c; /* do, line 199 */ if (ret < 0) return ret;
}
if (!r_prelude(z)) lab4:
goto lab2; /* call prelude, line 199 */ z->c = c;
lab2: }
z->c = c; { int c = z->c; /* do, line 209 */
} { int ret = r_mark_regions(z);
{ if (ret == 0) goto lab5; /* call mark_regions, line 209 */
int c = z->c; /* do, line 200 */ if (ret < 0) return ret;
}
if (!r_mark_regions(z)) lab5:
goto lab3; /* call mark_regions, line 200 */ z->c = c;
lab3: }
z->c = c; z->lb = z->c; z->c = z->l; /* backwards, line 210 */
}
z->lb = z->c; { int m = z->l - z->c; (void) m; /* do, line 212 */
z->c = z->l; /* backwards, line 201 */ { int ret = r_Step_1a(z);
if (ret == 0) goto lab6; /* call Step_1a, line 212 */
{ if (ret < 0) return ret;
int m = z->l - z->c; /* do, line 203 */ }
lab6:
if (!r_Step_1a(z)) z->c = z->l - m;
goto lab4; /* call Step_1a, line 203 */ }
lab4: { int m = z->l - z->c; (void) m; /* or, line 214 */
z->c = z->l - m; { int ret = r_exception2(z);
} if (ret == 0) goto lab8; /* call exception2, line 214 */
{ if (ret < 0) return ret;
int m = z->l - z->c; /* or, line 205 */ }
goto lab7;
if (!r_exception2(z)) lab8:
goto lab6; /* call exception2, line 205 */ z->c = z->l - m;
goto lab5; { int m = z->l - z->c; (void) m; /* do, line 216 */
lab6: { int ret = r_Step_1b(z);
z->c = z->l - m; if (ret == 0) goto lab9; /* call Step_1b, line 216 */
{ if (ret < 0) return ret;
int m = z->l - z->c; /* do, line 207 */ }
lab9:
if (!r_Step_1b(z)) z->c = z->l - m;
goto lab7; /* call Step_1b, line 207 */ }
lab7: { int m = z->l - z->c; (void) m; /* do, line 217 */
z->c = z->l - m; { int ret = r_Step_1c(z);
} if (ret == 0) goto lab10; /* call Step_1c, line 217 */
{ if (ret < 0) return ret;
int m = z->l - z->c; /* do, line 208 */ }
lab10:
if (!r_Step_1c(z)) z->c = z->l - m;
goto lab8; /* call Step_1c, line 208 */ }
lab8: { int m = z->l - z->c; (void) m; /* do, line 219 */
z->c = z->l - m; { int ret = r_Step_2(z);
} if (ret == 0) goto lab11; /* call Step_2, line 219 */
{ if (ret < 0) return ret;
int m = z->l - z->c; /* do, line 210 */ }
lab11:
if (!r_Step_2(z)) z->c = z->l - m;
goto lab9; /* call Step_2, line 210 */ }
lab9: { int m = z->l - z->c; (void) m; /* do, line 220 */
z->c = z->l - m; { int ret = r_Step_3(z);
} if (ret == 0) goto lab12; /* call Step_3, line 220 */
{ if (ret < 0) return ret;
int m = z->l - z->c; /* do, line 211 */ }
lab12:
if (!r_Step_3(z)) z->c = z->l - m;
goto lab10; /* call Step_3, line 211 */ }
lab10: { int m = z->l - z->c; (void) m; /* do, line 221 */
z->c = z->l - m; { int ret = r_Step_4(z);
} if (ret == 0) goto lab13; /* call Step_4, line 221 */
{ if (ret < 0) return ret;
int m = z->l - z->c; /* do, line 212 */ }
lab13:
if (!r_Step_4(z)) z->c = z->l - m;
goto lab11; /* call Step_4, line 212 */ }
lab11: { int m = z->l - z->c; (void) m; /* do, line 223 */
z->c = z->l - m; { int ret = r_Step_5(z);
} if (ret == 0) goto lab14; /* call Step_5, line 223 */
{ if (ret < 0) return ret;
int m = z->l - z->c; /* do, line 214 */ }
lab14:
if (!r_Step_5(z)) z->c = z->l - m;
goto lab12; /* call Step_5, line 214 */ }
lab12: }
z->c = z->l - m; lab7:
} z->c = z->lb;
} { int c = z->c; /* do, line 226 */
lab5: { int ret = r_postlude(z);
z->c = z->lb; if (ret == 0) goto lab15; /* call postlude, line 226 */
{ if (ret < 0) return ret;
int c = z->c; /* do, line 217 */ }
lab15:
if (!r_postlude(z)) z->c = c;
goto lab13; /* call postlude, line 217 */ }
lab13: }
z->c = c;
}
}
lab0: lab0:
return 1; return 1;
} }
extern struct SN_env * extern struct SN_env * english_ISO_8859_1_create_env(void) { return SN_create_env(0, 2, 1); }
english_create_env(void)
{ extern void english_ISO_8859_1_close_env(struct SN_env * z) { SN_close_env(z); }
return SN_create_env(0, 2, 1);
}
extern void
english_close_env(struct SN_env * z)
{
SN_close_env(z);
}
/* This file was generated automatically by the Snowball to ANSI C compiler */ /* This file was generated automatically by the Snowball to ANSI C compiler */
extern struct SN_env *english_create_env(void); #ifdef __cplusplus
extern void english_close_env(struct SN_env * z); extern "C" {
#endif
extern struct SN_env * english_ISO_8859_1_create_env(void);
extern void english_ISO_8859_1_close_env(struct SN_env * z);
extern int english_ISO_8859_1_stem(struct SN_env * z);
#ifdef __cplusplus
}
#endif
extern int english_stem(struct SN_env * z);
#include <limits.h>
#include "api.h" #include "api.h"
#define MAXINT INT_MAX
#define MININT INT_MIN
#define HEAD 2*sizeof(int) #define HEAD 2*sizeof(int)
#define SIZE(p) ((int *)(p))[-1] #define SIZE(p) ((int *)(p))[-1]
#define SET_SIZE(p, n) ((int *)(p))[-1] = n #define SET_SIZE(p, n) ((int *)(p))[-1] = n
#define CAPACITY(p) ((int *)(p))[-2] #define CAPACITY(p) ((int *)(p))[-2]
struct among struct among
{ { int s_size; /* number of chars in string */
int s_size; /* number of chars in string */ symbol * s; /* search string */
symbol *s; /* search string */ int substring_i;/* index to longest matching substring */
int substring_i; /* index to longest matching substring */ int result; /* result of the lookup */
int result; /* result of the lookup */ int (* function)(struct SN_env *);
int (*function) (struct SN_env *);
}; };
extern symbol *create_s(void); extern symbol * create_s(void);
extern void lose_s(symbol * p); extern void lose_s(symbol * p);
extern int in_grouping(struct SN_env * z, unsigned char *s, int min, int max); extern int skip_utf8(const symbol * p, int c, int lb, int l, int n);
extern int in_grouping_b(struct SN_env * z, unsigned char *s, int min, int max);
extern int out_grouping(struct SN_env * z, unsigned char *s, int min, int max);
extern int out_grouping_b(struct SN_env * z, unsigned char *s, int min, int max);
extern int in_range(struct SN_env * z, int min, int max); extern int in_grouping_U(struct SN_env * z, unsigned char * s, int min, int max);
extern int in_range_b(struct SN_env * z, int min, int max); extern int in_grouping_b_U(struct SN_env * z, unsigned char * s, int min, int max);
extern int out_range(struct SN_env * z, int min, int max); extern int out_grouping_U(struct SN_env * z, unsigned char * s, int min, int max);
extern int out_range_b(struct SN_env * z, int min, int max); extern int out_grouping_b_U(struct SN_env * z, unsigned char * s, int min, int max);
extern int eq_s(struct SN_env * z, int s_size, symbol * s); extern int in_grouping(struct SN_env * z, unsigned char * s, int min, int max);
extern int eq_s_b(struct SN_env * z, int s_size, symbol * s); extern int in_grouping_b(struct SN_env * z, unsigned char * s, int min, int max);
extern int eq_v(struct SN_env * z, symbol * p); extern int out_grouping(struct SN_env * z, unsigned char * s, int min, int max);
extern int eq_v_b(struct SN_env * z, symbol * p); extern int out_grouping_b(struct SN_env * z, unsigned char * s, int min, int max);
extern int find_among(struct SN_env * z, struct among * v, int v_size); extern int eq_s(struct SN_env * z, int s_size, symbol * s);
extern int find_among_b(struct SN_env * z, struct among * v, int v_size); extern int eq_s_b(struct SN_env * z, int s_size, symbol * s);
extern int eq_v(struct SN_env * z, symbol * p);
extern int eq_v_b(struct SN_env * z, symbol * p);
extern symbol *increase_size(symbol * p, int n); extern int find_among(struct SN_env * z, struct among * v, int v_size);
extern int replace_s(struct SN_env * z, int c_bra, int c_ket, int s_size, const symbol * s); extern int find_among_b(struct SN_env * z, struct among * v, int v_size);
extern void slice_from_s(struct SN_env * z, int s_size, symbol * s);
extern void slice_from_v(struct SN_env * z, symbol * p);
extern void slice_del(struct SN_env * z);
extern void insert_s(struct SN_env * z, int bra, int ket, int s_size, symbol * s); extern int replace_s(struct SN_env * z, int c_bra, int c_ket, int s_size, const symbol * s, int * adjustment);
extern void insert_v(struct SN_env * z, int bra, int ket, symbol * p); extern int slice_from_s(struct SN_env * z, int s_size, symbol * s);
extern int slice_from_v(struct SN_env * z, symbol * p);
extern int slice_del(struct SN_env * z);
extern symbol *slice_to(struct SN_env * z, symbol * p); extern int insert_s(struct SN_env * z, int bra, int ket, int s_size, symbol * s);
extern symbol *assign_to(struct SN_env * z, symbol * p); extern int insert_v(struct SN_env * z, int bra, int ket, symbol * p);
extern symbol * slice_to(struct SN_env * z, symbol * p);
extern symbol * assign_to(struct SN_env * z, symbol * p);
extern void debug(struct SN_env * z, int number, int line_count); extern void debug(struct SN_env * z, int number, int line_count);
...@@ -3,764 +3,699 @@ ...@@ -3,764 +3,699 @@
#include "header.h" #include "header.h"
extern int russian_stem(struct SN_env * z); extern int russian_KOI8_R_stem(struct SN_env * z);
static int r_tidy_up(struct SN_env * z); static int r_tidy_up(struct SN_env * z);
static int r_derivational(struct SN_env * z); static int r_derivational(struct SN_env * z);
static int r_noun(struct SN_env * z); static int r_noun(struct SN_env * z);
static int r_verb(struct SN_env * z); static int r_verb(struct SN_env * z);
static int r_reflexive(struct SN_env * z); static int r_reflexive(struct SN_env * z);
static int r_adjectival(struct SN_env * z); static int r_adjectival(struct SN_env * z);
static int r_adjective(struct SN_env * z); static int r_adjective(struct SN_env * z);
static int r_perfective_gerund(struct SN_env * z); static int r_perfective_gerund(struct SN_env * z);
static int r_R2(struct SN_env * z); static int r_R2(struct SN_env * z);
static int r_mark_regions(struct SN_env * z); static int r_mark_regions(struct SN_env * z);
extern struct SN_env *russian_create_env(void); extern struct SN_env * russian_KOI8_R_create_env(void);
extern void russian_close_env(struct SN_env * z); extern void russian_KOI8_R_close_env(struct SN_env * z);
static symbol s_0_0[3] = {215, 219, 201}; static symbol s_0_0[3] = { 0xD7, 0xDB, 0xC9 };
static symbol s_0_1[4] = {201, 215, 219, 201}; static symbol s_0_1[4] = { 0xC9, 0xD7, 0xDB, 0xC9 };
static symbol s_0_2[4] = {217, 215, 219, 201}; static symbol s_0_2[4] = { 0xD9, 0xD7, 0xDB, 0xC9 };
static symbol s_0_3[1] = {215}; static symbol s_0_3[1] = { 0xD7 };
static symbol s_0_4[2] = {201, 215}; static symbol s_0_4[2] = { 0xC9, 0xD7 };
static symbol s_0_5[2] = {217, 215}; static symbol s_0_5[2] = { 0xD9, 0xD7 };
static symbol s_0_6[5] = {215, 219, 201, 211, 216}; static symbol s_0_6[5] = { 0xD7, 0xDB, 0xC9, 0xD3, 0xD8 };
static symbol s_0_7[6] = {201, 215, 219, 201, 211, 216}; static symbol s_0_7[6] = { 0xC9, 0xD7, 0xDB, 0xC9, 0xD3, 0xD8 };
static symbol s_0_8[6] = {217, 215, 219, 201, 211, 216}; static symbol s_0_8[6] = { 0xD9, 0xD7, 0xDB, 0xC9, 0xD3, 0xD8 };
static struct among a_0[9] = static struct among a_0[9] =
{ {
/* 0 */ {3, s_0_0, -1, 1, 0}, /* 0 */ { 3, s_0_0, -1, 1, 0},
/* 1 */ {4, s_0_1, 0, 2, 0}, /* 1 */ { 4, s_0_1, 0, 2, 0},
/* 2 */ {4, s_0_2, 0, 2, 0}, /* 2 */ { 4, s_0_2, 0, 2, 0},
/* 3 */ {1, s_0_3, -1, 1, 0}, /* 3 */ { 1, s_0_3, -1, 1, 0},
/* 4 */ {2, s_0_4, 3, 2, 0}, /* 4 */ { 2, s_0_4, 3, 2, 0},
/* 5 */ {2, s_0_5, 3, 2, 0}, /* 5 */ { 2, s_0_5, 3, 2, 0},
/* 6 */ {5, s_0_6, -1, 1, 0}, /* 6 */ { 5, s_0_6, -1, 1, 0},
/* 7 */ {6, s_0_7, 6, 2, 0}, /* 7 */ { 6, s_0_7, 6, 2, 0},
/* 8 */ {6, s_0_8, 6, 2, 0} /* 8 */ { 6, s_0_8, 6, 2, 0}
}; };
static symbol s_1_0[2] = {192, 192}; static symbol s_1_0[2] = { 0xC0, 0xC0 };
static symbol s_1_1[2] = {197, 192}; static symbol s_1_1[2] = { 0xC5, 0xC0 };
static symbol s_1_2[2] = {207, 192}; static symbol s_1_2[2] = { 0xCF, 0xC0 };
static symbol s_1_3[2] = {213, 192}; static symbol s_1_3[2] = { 0xD5, 0xC0 };
static symbol s_1_4[2] = {197, 197}; static symbol s_1_4[2] = { 0xC5, 0xC5 };
static symbol s_1_5[2] = {201, 197}; static symbol s_1_5[2] = { 0xC9, 0xC5 };
static symbol s_1_6[2] = {207, 197}; static symbol s_1_6[2] = { 0xCF, 0xC5 };
static symbol s_1_7[2] = {217, 197}; static symbol s_1_7[2] = { 0xD9, 0xC5 };
static symbol s_1_8[2] = {201, 200}; static symbol s_1_8[2] = { 0xC9, 0xC8 };
static symbol s_1_9[2] = {217, 200}; static symbol s_1_9[2] = { 0xD9, 0xC8 };
static symbol s_1_10[3] = {201, 205, 201}; static symbol s_1_10[3] = { 0xC9, 0xCD, 0xC9 };
static symbol s_1_11[3] = {217, 205, 201}; static symbol s_1_11[3] = { 0xD9, 0xCD, 0xC9 };
static symbol s_1_12[2] = {197, 202}; static symbol s_1_12[2] = { 0xC5, 0xCA };
static symbol s_1_13[2] = {201, 202}; static symbol s_1_13[2] = { 0xC9, 0xCA };
static symbol s_1_14[2] = {207, 202}; static symbol s_1_14[2] = { 0xCF, 0xCA };
static symbol s_1_15[2] = {217, 202}; static symbol s_1_15[2] = { 0xD9, 0xCA };
static symbol s_1_16[2] = {197, 205}; static symbol s_1_16[2] = { 0xC5, 0xCD };
static symbol s_1_17[2] = {201, 205}; static symbol s_1_17[2] = { 0xC9, 0xCD };
static symbol s_1_18[2] = {207, 205}; static symbol s_1_18[2] = { 0xCF, 0xCD };
static symbol s_1_19[2] = {217, 205}; static symbol s_1_19[2] = { 0xD9, 0xCD };
static symbol s_1_20[3] = {197, 199, 207}; static symbol s_1_20[3] = { 0xC5, 0xC7, 0xCF };
static symbol s_1_21[3] = {207, 199, 207}; static symbol s_1_21[3] = { 0xCF, 0xC7, 0xCF };
static symbol s_1_22[2] = {193, 209}; static symbol s_1_22[2] = { 0xC1, 0xD1 };
static symbol s_1_23[2] = {209, 209}; static symbol s_1_23[2] = { 0xD1, 0xD1 };
static symbol s_1_24[3] = {197, 205, 213}; static symbol s_1_24[3] = { 0xC5, 0xCD, 0xD5 };
static symbol s_1_25[3] = {207, 205, 213}; static symbol s_1_25[3] = { 0xCF, 0xCD, 0xD5 };
static struct among a_1[26] = static struct among a_1[26] =
{ {
/* 0 */ {2, s_1_0, -1, 1, 0}, /* 0 */ { 2, s_1_0, -1, 1, 0},
/* 1 */ {2, s_1_1, -1, 1, 0}, /* 1 */ { 2, s_1_1, -1, 1, 0},
/* 2 */ {2, s_1_2, -1, 1, 0}, /* 2 */ { 2, s_1_2, -1, 1, 0},
/* 3 */ {2, s_1_3, -1, 1, 0}, /* 3 */ { 2, s_1_3, -1, 1, 0},
/* 4 */ {2, s_1_4, -1, 1, 0}, /* 4 */ { 2, s_1_4, -1, 1, 0},
/* 5 */ {2, s_1_5, -1, 1, 0}, /* 5 */ { 2, s_1_5, -1, 1, 0},
/* 6 */ {2, s_1_6, -1, 1, 0}, /* 6 */ { 2, s_1_6, -1, 1, 0},
/* 7 */ {2, s_1_7, -1, 1, 0}, /* 7 */ { 2, s_1_7, -1, 1, 0},
/* 8 */ {2, s_1_8, -1, 1, 0}, /* 8 */ { 2, s_1_8, -1, 1, 0},
/* 9 */ {2, s_1_9, -1, 1, 0}, /* 9 */ { 2, s_1_9, -1, 1, 0},
/* 10 */ {3, s_1_10, -1, 1, 0}, /* 10 */ { 3, s_1_10, -1, 1, 0},
/* 11 */ {3, s_1_11, -1, 1, 0}, /* 11 */ { 3, s_1_11, -1, 1, 0},
/* 12 */ {2, s_1_12, -1, 1, 0}, /* 12 */ { 2, s_1_12, -1, 1, 0},
/* 13 */ {2, s_1_13, -1, 1, 0}, /* 13 */ { 2, s_1_13, -1, 1, 0},
/* 14 */ {2, s_1_14, -1, 1, 0}, /* 14 */ { 2, s_1_14, -1, 1, 0},
/* 15 */ {2, s_1_15, -1, 1, 0}, /* 15 */ { 2, s_1_15, -1, 1, 0},
/* 16 */ {2, s_1_16, -1, 1, 0}, /* 16 */ { 2, s_1_16, -1, 1, 0},
/* 17 */ {2, s_1_17, -1, 1, 0}, /* 17 */ { 2, s_1_17, -1, 1, 0},
/* 18 */ {2, s_1_18, -1, 1, 0}, /* 18 */ { 2, s_1_18, -1, 1, 0},
/* 19 */ {2, s_1_19, -1, 1, 0}, /* 19 */ { 2, s_1_19, -1, 1, 0},
/* 20 */ {3, s_1_20, -1, 1, 0}, /* 20 */ { 3, s_1_20, -1, 1, 0},
/* 21 */ {3, s_1_21, -1, 1, 0}, /* 21 */ { 3, s_1_21, -1, 1, 0},
/* 22 */ {2, s_1_22, -1, 1, 0}, /* 22 */ { 2, s_1_22, -1, 1, 0},
/* 23 */ {2, s_1_23, -1, 1, 0}, /* 23 */ { 2, s_1_23, -1, 1, 0},
/* 24 */ {3, s_1_24, -1, 1, 0}, /* 24 */ { 3, s_1_24, -1, 1, 0},
/* 25 */ {3, s_1_25, -1, 1, 0} /* 25 */ { 3, s_1_25, -1, 1, 0}
}; };
static symbol s_2_0[2] = {197, 205}; static symbol s_2_0[2] = { 0xC5, 0xCD };
static symbol s_2_1[2] = {206, 206}; static symbol s_2_1[2] = { 0xCE, 0xCE };
static symbol s_2_2[2] = {215, 219}; static symbol s_2_2[2] = { 0xD7, 0xDB };
static symbol s_2_3[3] = {201, 215, 219}; static symbol s_2_3[3] = { 0xC9, 0xD7, 0xDB };
static symbol s_2_4[3] = {217, 215, 219}; static symbol s_2_4[3] = { 0xD9, 0xD7, 0xDB };
static symbol s_2_5[1] = {221}; static symbol s_2_5[1] = { 0xDD };
static symbol s_2_6[2] = {192, 221}; static symbol s_2_6[2] = { 0xC0, 0xDD };
static symbol s_2_7[3] = {213, 192, 221}; static symbol s_2_7[3] = { 0xD5, 0xC0, 0xDD };
static struct among a_2[8] = static struct among a_2[8] =
{ {
/* 0 */ {2, s_2_0, -1, 1, 0}, /* 0 */ { 2, s_2_0, -1, 1, 0},
/* 1 */ {2, s_2_1, -1, 1, 0}, /* 1 */ { 2, s_2_1, -1, 1, 0},
/* 2 */ {2, s_2_2, -1, 1, 0}, /* 2 */ { 2, s_2_2, -1, 1, 0},
/* 3 */ {3, s_2_3, 2, 2, 0}, /* 3 */ { 3, s_2_3, 2, 2, 0},
/* 4 */ {3, s_2_4, 2, 2, 0}, /* 4 */ { 3, s_2_4, 2, 2, 0},
/* 5 */ {1, s_2_5, -1, 1, 0}, /* 5 */ { 1, s_2_5, -1, 1, 0},
/* 6 */ {2, s_2_6, 5, 1, 0}, /* 6 */ { 2, s_2_6, 5, 1, 0},
/* 7 */ {3, s_2_7, 6, 2, 0} /* 7 */ { 3, s_2_7, 6, 2, 0}
}; };
static symbol s_3_0[2] = {211, 209}; static symbol s_3_0[2] = { 0xD3, 0xD1 };
static symbol s_3_1[2] = {211, 216}; static symbol s_3_1[2] = { 0xD3, 0xD8 };
static struct among a_3[2] = static struct among a_3[2] =
{ {
/* 0 */ {2, s_3_0, -1, 1, 0}, /* 0 */ { 2, s_3_0, -1, 1, 0},
/* 1 */ {2, s_3_1, -1, 1, 0} /* 1 */ { 2, s_3_1, -1, 1, 0}
}; };
static symbol s_4_0[1] = {192}; static symbol s_4_0[1] = { 0xC0 };
static symbol s_4_1[2] = {213, 192}; static symbol s_4_1[2] = { 0xD5, 0xC0 };
static symbol s_4_2[2] = {204, 193}; static symbol s_4_2[2] = { 0xCC, 0xC1 };
static symbol s_4_3[3] = {201, 204, 193}; static symbol s_4_3[3] = { 0xC9, 0xCC, 0xC1 };
static symbol s_4_4[3] = {217, 204, 193}; static symbol s_4_4[3] = { 0xD9, 0xCC, 0xC1 };
static symbol s_4_5[2] = {206, 193}; static symbol s_4_5[2] = { 0xCE, 0xC1 };
static symbol s_4_6[3] = {197, 206, 193}; static symbol s_4_6[3] = { 0xC5, 0xCE, 0xC1 };
static symbol s_4_7[3] = {197, 212, 197}; static symbol s_4_7[3] = { 0xC5, 0xD4, 0xC5 };
static symbol s_4_8[3] = {201, 212, 197}; static symbol s_4_8[3] = { 0xC9, 0xD4, 0xC5 };
static symbol s_4_9[3] = {202, 212, 197}; static symbol s_4_9[3] = { 0xCA, 0xD4, 0xC5 };
static symbol s_4_10[4] = {197, 202, 212, 197}; static symbol s_4_10[4] = { 0xC5, 0xCA, 0xD4, 0xC5 };
static symbol s_4_11[4] = {213, 202, 212, 197}; static symbol s_4_11[4] = { 0xD5, 0xCA, 0xD4, 0xC5 };
static symbol s_4_12[2] = {204, 201}; static symbol s_4_12[2] = { 0xCC, 0xC9 };
static symbol s_4_13[3] = {201, 204, 201}; static symbol s_4_13[3] = { 0xC9, 0xCC, 0xC9 };
static symbol s_4_14[3] = {217, 204, 201}; static symbol s_4_14[3] = { 0xD9, 0xCC, 0xC9 };
static symbol s_4_15[1] = {202}; static symbol s_4_15[1] = { 0xCA };
static symbol s_4_16[2] = {197, 202}; static symbol s_4_16[2] = { 0xC5, 0xCA };
static symbol s_4_17[2] = {213, 202}; static symbol s_4_17[2] = { 0xD5, 0xCA };
static symbol s_4_18[1] = {204}; static symbol s_4_18[1] = { 0xCC };
static symbol s_4_19[2] = {201, 204}; static symbol s_4_19[2] = { 0xC9, 0xCC };
static symbol s_4_20[2] = {217, 204}; static symbol s_4_20[2] = { 0xD9, 0xCC };
static symbol s_4_21[2] = {197, 205}; static symbol s_4_21[2] = { 0xC5, 0xCD };
static symbol s_4_22[2] = {201, 205}; static symbol s_4_22[2] = { 0xC9, 0xCD };
static symbol s_4_23[2] = {217, 205}; static symbol s_4_23[2] = { 0xD9, 0xCD };
static symbol s_4_24[1] = {206}; static symbol s_4_24[1] = { 0xCE };
static symbol s_4_25[2] = {197, 206}; static symbol s_4_25[2] = { 0xC5, 0xCE };
static symbol s_4_26[2] = {204, 207}; static symbol s_4_26[2] = { 0xCC, 0xCF };
static symbol s_4_27[3] = {201, 204, 207}; static symbol s_4_27[3] = { 0xC9, 0xCC, 0xCF };
static symbol s_4_28[3] = {217, 204, 207}; static symbol s_4_28[3] = { 0xD9, 0xCC, 0xCF };
static symbol s_4_29[2] = {206, 207}; static symbol s_4_29[2] = { 0xCE, 0xCF };
static symbol s_4_30[3] = {197, 206, 207}; static symbol s_4_30[3] = { 0xC5, 0xCE, 0xCF };
static symbol s_4_31[3] = {206, 206, 207}; static symbol s_4_31[3] = { 0xCE, 0xCE, 0xCF };
static symbol s_4_32[2] = {192, 212}; static symbol s_4_32[2] = { 0xC0, 0xD4 };
static symbol s_4_33[3] = {213, 192, 212}; static symbol s_4_33[3] = { 0xD5, 0xC0, 0xD4 };
static symbol s_4_34[2] = {197, 212}; static symbol s_4_34[2] = { 0xC5, 0xD4 };
static symbol s_4_35[3] = {213, 197, 212}; static symbol s_4_35[3] = { 0xD5, 0xC5, 0xD4 };
static symbol s_4_36[2] = {201, 212}; static symbol s_4_36[2] = { 0xC9, 0xD4 };
static symbol s_4_37[2] = {209, 212}; static symbol s_4_37[2] = { 0xD1, 0xD4 };
static symbol s_4_38[2] = {217, 212}; static symbol s_4_38[2] = { 0xD9, 0xD4 };
static symbol s_4_39[2] = {212, 216}; static symbol s_4_39[2] = { 0xD4, 0xD8 };
static symbol s_4_40[3] = {201, 212, 216}; static symbol s_4_40[3] = { 0xC9, 0xD4, 0xD8 };
static symbol s_4_41[3] = {217, 212, 216}; static symbol s_4_41[3] = { 0xD9, 0xD4, 0xD8 };
static symbol s_4_42[3] = {197, 219, 216}; static symbol s_4_42[3] = { 0xC5, 0xDB, 0xD8 };
static symbol s_4_43[3] = {201, 219, 216}; static symbol s_4_43[3] = { 0xC9, 0xDB, 0xD8 };
static symbol s_4_44[2] = {206, 217}; static symbol s_4_44[2] = { 0xCE, 0xD9 };
static symbol s_4_45[3] = {197, 206, 217}; static symbol s_4_45[3] = { 0xC5, 0xCE, 0xD9 };
static struct among a_4[46] = static struct among a_4[46] =
{ {
/* 0 */ {1, s_4_0, -1, 2, 0}, /* 0 */ { 1, s_4_0, -1, 2, 0},
/* 1 */ {2, s_4_1, 0, 2, 0}, /* 1 */ { 2, s_4_1, 0, 2, 0},
/* 2 */ {2, s_4_2, -1, 1, 0}, /* 2 */ { 2, s_4_2, -1, 1, 0},
/* 3 */ {3, s_4_3, 2, 2, 0}, /* 3 */ { 3, s_4_3, 2, 2, 0},
/* 4 */ {3, s_4_4, 2, 2, 0}, /* 4 */ { 3, s_4_4, 2, 2, 0},
/* 5 */ {2, s_4_5, -1, 1, 0}, /* 5 */ { 2, s_4_5, -1, 1, 0},
/* 6 */ {3, s_4_6, 5, 2, 0}, /* 6 */ { 3, s_4_6, 5, 2, 0},
/* 7 */ {3, s_4_7, -1, 1, 0}, /* 7 */ { 3, s_4_7, -1, 1, 0},
/* 8 */ {3, s_4_8, -1, 2, 0}, /* 8 */ { 3, s_4_8, -1, 2, 0},
/* 9 */ {3, s_4_9, -1, 1, 0}, /* 9 */ { 3, s_4_9, -1, 1, 0},
/* 10 */ {4, s_4_10, 9, 2, 0}, /* 10 */ { 4, s_4_10, 9, 2, 0},
/* 11 */ {4, s_4_11, 9, 2, 0}, /* 11 */ { 4, s_4_11, 9, 2, 0},
/* 12 */ {2, s_4_12, -1, 1, 0}, /* 12 */ { 2, s_4_12, -1, 1, 0},
/* 13 */ {3, s_4_13, 12, 2, 0}, /* 13 */ { 3, s_4_13, 12, 2, 0},
/* 14 */ {3, s_4_14, 12, 2, 0}, /* 14 */ { 3, s_4_14, 12, 2, 0},
/* 15 */ {1, s_4_15, -1, 1, 0}, /* 15 */ { 1, s_4_15, -1, 1, 0},
/* 16 */ {2, s_4_16, 15, 2, 0}, /* 16 */ { 2, s_4_16, 15, 2, 0},
/* 17 */ {2, s_4_17, 15, 2, 0}, /* 17 */ { 2, s_4_17, 15, 2, 0},
/* 18 */ {1, s_4_18, -1, 1, 0}, /* 18 */ { 1, s_4_18, -1, 1, 0},
/* 19 */ {2, s_4_19, 18, 2, 0}, /* 19 */ { 2, s_4_19, 18, 2, 0},
/* 20 */ {2, s_4_20, 18, 2, 0}, /* 20 */ { 2, s_4_20, 18, 2, 0},
/* 21 */ {2, s_4_21, -1, 1, 0}, /* 21 */ { 2, s_4_21, -1, 1, 0},
/* 22 */ {2, s_4_22, -1, 2, 0}, /* 22 */ { 2, s_4_22, -1, 2, 0},
/* 23 */ {2, s_4_23, -1, 2, 0}, /* 23 */ { 2, s_4_23, -1, 2, 0},
/* 24 */ {1, s_4_24, -1, 1, 0}, /* 24 */ { 1, s_4_24, -1, 1, 0},
/* 25 */ {2, s_4_25, 24, 2, 0}, /* 25 */ { 2, s_4_25, 24, 2, 0},
/* 26 */ {2, s_4_26, -1, 1, 0}, /* 26 */ { 2, s_4_26, -1, 1, 0},
/* 27 */ {3, s_4_27, 26, 2, 0}, /* 27 */ { 3, s_4_27, 26, 2, 0},
/* 28 */ {3, s_4_28, 26, 2, 0}, /* 28 */ { 3, s_4_28, 26, 2, 0},
/* 29 */ {2, s_4_29, -1, 1, 0}, /* 29 */ { 2, s_4_29, -1, 1, 0},
/* 30 */ {3, s_4_30, 29, 2, 0}, /* 30 */ { 3, s_4_30, 29, 2, 0},
/* 31 */ {3, s_4_31, 29, 1, 0}, /* 31 */ { 3, s_4_31, 29, 1, 0},
/* 32 */ {2, s_4_32, -1, 1, 0}, /* 32 */ { 2, s_4_32, -1, 1, 0},
/* 33 */ {3, s_4_33, 32, 2, 0}, /* 33 */ { 3, s_4_33, 32, 2, 0},
/* 34 */ {2, s_4_34, -1, 1, 0}, /* 34 */ { 2, s_4_34, -1, 1, 0},
/* 35 */ {3, s_4_35, 34, 2, 0}, /* 35 */ { 3, s_4_35, 34, 2, 0},
/* 36 */ {2, s_4_36, -1, 2, 0}, /* 36 */ { 2, s_4_36, -1, 2, 0},
/* 37 */ {2, s_4_37, -1, 2, 0}, /* 37 */ { 2, s_4_37, -1, 2, 0},
/* 38 */ {2, s_4_38, -1, 2, 0}, /* 38 */ { 2, s_4_38, -1, 2, 0},
/* 39 */ {2, s_4_39, -1, 1, 0}, /* 39 */ { 2, s_4_39, -1, 1, 0},
/* 40 */ {3, s_4_40, 39, 2, 0}, /* 40 */ { 3, s_4_40, 39, 2, 0},
/* 41 */ {3, s_4_41, 39, 2, 0}, /* 41 */ { 3, s_4_41, 39, 2, 0},
/* 42 */ {3, s_4_42, -1, 1, 0}, /* 42 */ { 3, s_4_42, -1, 1, 0},
/* 43 */ {3, s_4_43, -1, 2, 0}, /* 43 */ { 3, s_4_43, -1, 2, 0},
/* 44 */ {2, s_4_44, -1, 1, 0}, /* 44 */ { 2, s_4_44, -1, 1, 0},
/* 45 */ {3, s_4_45, 44, 2, 0} /* 45 */ { 3, s_4_45, 44, 2, 0}
}; };
static symbol s_5_0[1] = {192}; static symbol s_5_0[1] = { 0xC0 };
static symbol s_5_1[2] = {201, 192}; static symbol s_5_1[2] = { 0xC9, 0xC0 };
static symbol s_5_2[2] = {216, 192}; static symbol s_5_2[2] = { 0xD8, 0xC0 };
static symbol s_5_3[1] = {193}; static symbol s_5_3[1] = { 0xC1 };
static symbol s_5_4[1] = {197}; static symbol s_5_4[1] = { 0xC5 };
static symbol s_5_5[2] = {201, 197}; static symbol s_5_5[2] = { 0xC9, 0xC5 };
static symbol s_5_6[2] = {216, 197}; static symbol s_5_6[2] = { 0xD8, 0xC5 };
static symbol s_5_7[2] = {193, 200}; static symbol s_5_7[2] = { 0xC1, 0xC8 };
static symbol s_5_8[2] = {209, 200}; static symbol s_5_8[2] = { 0xD1, 0xC8 };
static symbol s_5_9[3] = {201, 209, 200}; static symbol s_5_9[3] = { 0xC9, 0xD1, 0xC8 };
static symbol s_5_10[1] = {201}; static symbol s_5_10[1] = { 0xC9 };
static symbol s_5_11[2] = {197, 201}; static symbol s_5_11[2] = { 0xC5, 0xC9 };
static symbol s_5_12[2] = {201, 201}; static symbol s_5_12[2] = { 0xC9, 0xC9 };
static symbol s_5_13[3] = {193, 205, 201}; static symbol s_5_13[3] = { 0xC1, 0xCD, 0xC9 };
static symbol s_5_14[3] = {209, 205, 201}; static symbol s_5_14[3] = { 0xD1, 0xCD, 0xC9 };
static symbol s_5_15[4] = {201, 209, 205, 201}; static symbol s_5_15[4] = { 0xC9, 0xD1, 0xCD, 0xC9 };
static symbol s_5_16[1] = {202}; static symbol s_5_16[1] = { 0xCA };
static symbol s_5_17[2] = {197, 202}; static symbol s_5_17[2] = { 0xC5, 0xCA };
static symbol s_5_18[3] = {201, 197, 202}; static symbol s_5_18[3] = { 0xC9, 0xC5, 0xCA };
static symbol s_5_19[2] = {201, 202}; static symbol s_5_19[2] = { 0xC9, 0xCA };
static symbol s_5_20[2] = {207, 202}; static symbol s_5_20[2] = { 0xCF, 0xCA };
static symbol s_5_21[2] = {193, 205}; static symbol s_5_21[2] = { 0xC1, 0xCD };
static symbol s_5_22[2] = {197, 205}; static symbol s_5_22[2] = { 0xC5, 0xCD };
static symbol s_5_23[3] = {201, 197, 205}; static symbol s_5_23[3] = { 0xC9, 0xC5, 0xCD };
static symbol s_5_24[2] = {207, 205}; static symbol s_5_24[2] = { 0xCF, 0xCD };
static symbol s_5_25[2] = {209, 205}; static symbol s_5_25[2] = { 0xD1, 0xCD };
static symbol s_5_26[3] = {201, 209, 205}; static symbol s_5_26[3] = { 0xC9, 0xD1, 0xCD };
static symbol s_5_27[1] = {207}; static symbol s_5_27[1] = { 0xCF };
static symbol s_5_28[1] = {209}; static symbol s_5_28[1] = { 0xD1 };
static symbol s_5_29[2] = {201, 209}; static symbol s_5_29[2] = { 0xC9, 0xD1 };
static symbol s_5_30[2] = {216, 209}; static symbol s_5_30[2] = { 0xD8, 0xD1 };
static symbol s_5_31[1] = {213}; static symbol s_5_31[1] = { 0xD5 };
static symbol s_5_32[2] = {197, 215}; static symbol s_5_32[2] = { 0xC5, 0xD7 };
static symbol s_5_33[2] = {207, 215}; static symbol s_5_33[2] = { 0xCF, 0xD7 };
static symbol s_5_34[1] = {216}; static symbol s_5_34[1] = { 0xD8 };
static symbol s_5_35[1] = {217}; static symbol s_5_35[1] = { 0xD9 };
static struct among a_5[36] = static struct among a_5[36] =
{ {
/* 0 */ {1, s_5_0, -1, 1, 0}, /* 0 */ { 1, s_5_0, -1, 1, 0},
/* 1 */ {2, s_5_1, 0, 1, 0}, /* 1 */ { 2, s_5_1, 0, 1, 0},
/* 2 */ {2, s_5_2, 0, 1, 0}, /* 2 */ { 2, s_5_2, 0, 1, 0},
/* 3 */ {1, s_5_3, -1, 1, 0}, /* 3 */ { 1, s_5_3, -1, 1, 0},
/* 4 */ {1, s_5_4, -1, 1, 0}, /* 4 */ { 1, s_5_4, -1, 1, 0},
/* 5 */ {2, s_5_5, 4, 1, 0}, /* 5 */ { 2, s_5_5, 4, 1, 0},
/* 6 */ {2, s_5_6, 4, 1, 0}, /* 6 */ { 2, s_5_6, 4, 1, 0},
/* 7 */ {2, s_5_7, -1, 1, 0}, /* 7 */ { 2, s_5_7, -1, 1, 0},
/* 8 */ {2, s_5_8, -1, 1, 0}, /* 8 */ { 2, s_5_8, -1, 1, 0},
/* 9 */ {3, s_5_9, 8, 1, 0}, /* 9 */ { 3, s_5_9, 8, 1, 0},
/* 10 */ {1, s_5_10, -1, 1, 0}, /* 10 */ { 1, s_5_10, -1, 1, 0},
/* 11 */ {2, s_5_11, 10, 1, 0}, /* 11 */ { 2, s_5_11, 10, 1, 0},
/* 12 */ {2, s_5_12, 10, 1, 0}, /* 12 */ { 2, s_5_12, 10, 1, 0},
/* 13 */ {3, s_5_13, 10, 1, 0}, /* 13 */ { 3, s_5_13, 10, 1, 0},
/* 14 */ {3, s_5_14, 10, 1, 0}, /* 14 */ { 3, s_5_14, 10, 1, 0},
/* 15 */ {4, s_5_15, 14, 1, 0}, /* 15 */ { 4, s_5_15, 14, 1, 0},
/* 16 */ {1, s_5_16, -1, 1, 0}, /* 16 */ { 1, s_5_16, -1, 1, 0},
/* 17 */ {2, s_5_17, 16, 1, 0}, /* 17 */ { 2, s_5_17, 16, 1, 0},
/* 18 */ {3, s_5_18, 17, 1, 0}, /* 18 */ { 3, s_5_18, 17, 1, 0},
/* 19 */ {2, s_5_19, 16, 1, 0}, /* 19 */ { 2, s_5_19, 16, 1, 0},
/* 20 */ {2, s_5_20, 16, 1, 0}, /* 20 */ { 2, s_5_20, 16, 1, 0},
/* 21 */ {2, s_5_21, -1, 1, 0}, /* 21 */ { 2, s_5_21, -1, 1, 0},
/* 22 */ {2, s_5_22, -1, 1, 0}, /* 22 */ { 2, s_5_22, -1, 1, 0},
/* 23 */ {3, s_5_23, 22, 1, 0}, /* 23 */ { 3, s_5_23, 22, 1, 0},
/* 24 */ {2, s_5_24, -1, 1, 0}, /* 24 */ { 2, s_5_24, -1, 1, 0},
/* 25 */ {2, s_5_25, -1, 1, 0}, /* 25 */ { 2, s_5_25, -1, 1, 0},
/* 26 */ {3, s_5_26, 25, 1, 0}, /* 26 */ { 3, s_5_26, 25, 1, 0},
/* 27 */ {1, s_5_27, -1, 1, 0}, /* 27 */ { 1, s_5_27, -1, 1, 0},
/* 28 */ {1, s_5_28, -1, 1, 0}, /* 28 */ { 1, s_5_28, -1, 1, 0},
/* 29 */ {2, s_5_29, 28, 1, 0}, /* 29 */ { 2, s_5_29, 28, 1, 0},
/* 30 */ {2, s_5_30, 28, 1, 0}, /* 30 */ { 2, s_5_30, 28, 1, 0},
/* 31 */ {1, s_5_31, -1, 1, 0}, /* 31 */ { 1, s_5_31, -1, 1, 0},
/* 32 */ {2, s_5_32, -1, 1, 0}, /* 32 */ { 2, s_5_32, -1, 1, 0},
/* 33 */ {2, s_5_33, -1, 1, 0}, /* 33 */ { 2, s_5_33, -1, 1, 0},
/* 34 */ {1, s_5_34, -1, 1, 0}, /* 34 */ { 1, s_5_34, -1, 1, 0},
/* 35 */ {1, s_5_35, -1, 1, 0} /* 35 */ { 1, s_5_35, -1, 1, 0}
}; };
static symbol s_6_0[3] = {207, 211, 212}; static symbol s_6_0[3] = { 0xCF, 0xD3, 0xD4 };
static symbol s_6_1[4] = {207, 211, 212, 216}; static symbol s_6_1[4] = { 0xCF, 0xD3, 0xD4, 0xD8 };
static struct among a_6[2] = static struct among a_6[2] =
{ {
/* 0 */ {3, s_6_0, -1, 1, 0}, /* 0 */ { 3, s_6_0, -1, 1, 0},
/* 1 */ {4, s_6_1, -1, 1, 0} /* 1 */ { 4, s_6_1, -1, 1, 0}
}; };
static symbol s_7_0[4] = {197, 202, 219, 197}; static symbol s_7_0[4] = { 0xC5, 0xCA, 0xDB, 0xC5 };
static symbol s_7_1[1] = {206}; static symbol s_7_1[1] = { 0xCE };
static symbol s_7_2[1] = {216}; static symbol s_7_2[1] = { 0xD8 };
static symbol s_7_3[3] = {197, 202, 219}; static symbol s_7_3[3] = { 0xC5, 0xCA, 0xDB };
static struct among a_7[4] = static struct among a_7[4] =
{ {
/* 0 */ {4, s_7_0, -1, 1, 0}, /* 0 */ { 4, s_7_0, -1, 1, 0},
/* 1 */ {1, s_7_1, -1, 2, 0}, /* 1 */ { 1, s_7_1, -1, 2, 0},
/* 2 */ {1, s_7_2, -1, 3, 0}, /* 2 */ { 1, s_7_2, -1, 3, 0},
/* 3 */ {3, s_7_3, -1, 1, 0} /* 3 */ { 3, s_7_3, -1, 1, 0}
}; };
static unsigned char g_v[] = {35, 130, 34, 18}; static unsigned char g_v[] = { 35, 130, 34, 18 };
static symbol s_0[] = {193}; static symbol s_0[] = { 0xC1 };
static symbol s_1[] = {209}; static symbol s_1[] = { 0xD1 };
static symbol s_2[] = {193}; static symbol s_2[] = { 0xC1 };
static symbol s_3[] = {209}; static symbol s_3[] = { 0xD1 };
static symbol s_4[] = {193}; static symbol s_4[] = { 0xC1 };
static symbol s_5[] = {209}; static symbol s_5[] = { 0xD1 };
static symbol s_6[] = {206}; static symbol s_6[] = { 0xCE };
static symbol s_7[] = {206}; static symbol s_7[] = { 0xCE };
static symbol s_8[] = {206}; static symbol s_8[] = { 0xCE };
static symbol s_9[] = {201}; static symbol s_9[] = { 0xC9 };
static int static int r_mark_regions(struct SN_env * z) {
r_mark_regions(struct SN_env * z) z->I[0] = z->l;
{ z->I[1] = z->l;
z->I[0] = z->l; { int c = z->c; /* do, line 63 */
z->I[1] = z->l; while(1) { /* gopast, line 64 */
{ if (!(in_grouping(z, g_v, 192, 220))) goto lab1;
int c = z->c; /* do, line 100 */ break;
lab1:
while (1) if (z->c >= z->l) goto lab0;
{ /* gopast, line 101 */ z->c++; /* gopast, line 64 */
if (!(in_grouping(z, g_v, 192, 220))) }
goto lab1; z->I[0] = z->c; /* setmark pV, line 64 */
break; while(1) { /* gopast, line 64 */
lab1: if (!(out_grouping(z, g_v, 192, 220))) goto lab2;
if (z->c >= z->l) break;
goto lab0; lab2:
z->c++; if (z->c >= z->l) goto lab0;
} z->c++; /* gopast, line 64 */
z->I[0] = z->c; /* setmark pV, line 101 */ }
while (1) while(1) { /* gopast, line 65 */
{ /* gopast, line 101 */ if (!(in_grouping(z, g_v, 192, 220))) goto lab3;
if (!(out_grouping(z, g_v, 192, 220))) break;
goto lab2; lab3:
break; if (z->c >= z->l) goto lab0;
lab2: z->c++; /* gopast, line 65 */
if (z->c >= z->l) }
goto lab0; while(1) { /* gopast, line 65 */
z->c++; if (!(out_grouping(z, g_v, 192, 220))) goto lab4;
} break;
while (1) lab4:
{ /* gopast, line 102 */ if (z->c >= z->l) goto lab0;
if (!(in_grouping(z, g_v, 192, 220))) z->c++; /* gopast, line 65 */
goto lab3; }
break; z->I[1] = z->c; /* setmark p2, line 65 */
lab3: lab0:
if (z->c >= z->l) z->c = c;
goto lab0; }
z->c++; return 1;
}
while (1)
{ /* gopast, line 102 */
if (!(out_grouping(z, g_v, 192, 220)))
goto lab4;
break;
lab4:
if (z->c >= z->l)
goto lab0;
z->c++;
}
z->I[1] = z->c; /* setmark p2, line 102 */
lab0:
z->c = c;
}
return 1;
} }
static int static int r_R2(struct SN_env * z) {
r_R2(struct SN_env * z) if (!(z->I[1] <= z->c)) return 0;
{ return 1;
if (!(z->I[1] <= z->c))
return 0;
return 1;
} }
static int static int r_perfective_gerund(struct SN_env * z) {
r_perfective_gerund(struct SN_env * z) int among_var;
{ z->ket = z->c; /* [, line 74 */
int among_var; among_var = find_among_b(z, a_0, 9); /* substring, line 74 */
if (!(among_var)) return 0;
z->ket = z->c; /* [, line 111 */ z->bra = z->c; /* ], line 74 */
among_var = find_among_b(z, a_0, 9); /* substring, line 111 */ switch(among_var) {
if (!(among_var)) case 0: return 0;
return 0; case 1:
z->bra = z->c; /* ], line 111 */ { int m = z->l - z->c; (void) m; /* or, line 78 */
switch (among_var) if (!(eq_s_b(z, 1, s_0))) goto lab1;
{ goto lab0;
case 0: lab1:
return 0; z->c = z->l - m;
case 1: if (!(eq_s_b(z, 1, s_1))) return 0;
{ }
int m = z->l - z->c; /* or, line 115 */ lab0:
{ int ret;
if (!(eq_s_b(z, 1, s_0))) ret = slice_del(z); /* delete, line 78 */
goto lab1; if (ret < 0) return ret;
goto lab0; }
lab1: break;
z->c = z->l - m; case 2:
if (!(eq_s_b(z, 1, s_1))) { int ret;
return 0; ret = slice_del(z); /* delete, line 85 */
} if (ret < 0) return ret;
lab0: }
slice_del(z); /* delete, line 115 */ break;
break; }
case 2: return 1;
slice_del(z); /* delete, line 122 */
break;
}
return 1;
} }
static int static int r_adjective(struct SN_env * z) {
r_adjective(struct SN_env * z) int among_var;
{ z->ket = z->c; /* [, line 90 */
int among_var; among_var = find_among_b(z, a_1, 26); /* substring, line 90 */
if (!(among_var)) return 0;
z->ket = z->c; /* [, line 127 */ z->bra = z->c; /* ], line 90 */
among_var = find_among_b(z, a_1, 26); /* substring, line 127 */ switch(among_var) {
if (!(among_var)) case 0: return 0;
return 0; case 1:
z->bra = z->c; /* ], line 127 */ { int ret;
switch (among_var) ret = slice_del(z); /* delete, line 99 */
{ if (ret < 0) return ret;
case 0: }
return 0; break;
case 1: }
slice_del(z); /* delete, line 136 */ return 1;
break;
}
return 1;
} }
static int static int r_adjectival(struct SN_env * z) {
r_adjectival(struct SN_env * z) int among_var;
{ { int ret = r_adjective(z);
int among_var; if (ret == 0) return 0; /* call adjective, line 104 */
if (ret < 0) return ret;
if (!r_adjective(z)) }
return 0; /* call adjective, line 141 */ { int m = z->l - z->c; (void) m; /* try, line 111 */
{ z->ket = z->c; /* [, line 112 */
int m = z->l - z->c; /* try, line 148 */ among_var = find_among_b(z, a_2, 8); /* substring, line 112 */
if (!(among_var)) { z->c = z->l - m; goto lab0; }
z->ket = z->c; /* [, line 149 */ z->bra = z->c; /* ], line 112 */
among_var = find_among_b(z, a_2, 8); /* substring, line 149 */ switch(among_var) {
if (!(among_var)) case 0: { z->c = z->l - m; goto lab0; }
{ case 1:
z->c = z->l - m; { int m = z->l - z->c; (void) m; /* or, line 117 */
goto lab0; if (!(eq_s_b(z, 1, s_2))) goto lab2;
} goto lab1;
z->bra = z->c; /* ], line 149 */ lab2:
switch (among_var) z->c = z->l - m;
{ if (!(eq_s_b(z, 1, s_3))) { z->c = z->l - m; goto lab0; }
case 0: }
{ lab1:
z->c = z->l - m; { int ret;
goto lab0; ret = slice_del(z); /* delete, line 117 */
} if (ret < 0) return ret;
case 1: }
{ break;
int m = z->l - z->c; /* or, line 154 */ case 2:
{ int ret;
if (!(eq_s_b(z, 1, s_2))) ret = slice_del(z); /* delete, line 124 */
goto lab2; if (ret < 0) return ret;
goto lab1; }
lab2: break;
z->c = z->l - m; }
if (!(eq_s_b(z, 1, s_3))) lab0:
{ ;
z->c = z->l - m; }
goto lab0; return 1;
}
}
lab1:
slice_del(z); /* delete, line 154 */
break;
case 2:
slice_del(z); /* delete, line 161 */
break;
}
lab0:
;
}
return 1;
} }
static int static int r_reflexive(struct SN_env * z) {
r_reflexive(struct SN_env * z) int among_var;
{ z->ket = z->c; /* [, line 131 */
int among_var; among_var = find_among_b(z, a_3, 2); /* substring, line 131 */
if (!(among_var)) return 0;
z->ket = z->c; /* [, line 168 */ z->bra = z->c; /* ], line 131 */
among_var = find_among_b(z, a_3, 2); /* substring, line 168 */ switch(among_var) {
if (!(among_var)) case 0: return 0;
return 0; case 1:
z->bra = z->c; /* ], line 168 */ { int ret;
switch (among_var) ret = slice_del(z); /* delete, line 134 */
{ if (ret < 0) return ret;
case 0: }
return 0; break;
case 1: }
slice_del(z); /* delete, line 171 */ return 1;
break;
}
return 1;
} }
static int static int r_verb(struct SN_env * z) {
r_verb(struct SN_env * z) int among_var;
{ z->ket = z->c; /* [, line 139 */
int among_var; among_var = find_among_b(z, a_4, 46); /* substring, line 139 */
if (!(among_var)) return 0;
z->ket = z->c; /* [, line 176 */ z->bra = z->c; /* ], line 139 */
among_var = find_among_b(z, a_4, 46); /* substring, line 176 */ switch(among_var) {
if (!(among_var)) case 0: return 0;
return 0; case 1:
z->bra = z->c; /* ], line 176 */ { int m = z->l - z->c; (void) m; /* or, line 145 */
switch (among_var) if (!(eq_s_b(z, 1, s_4))) goto lab1;
{ goto lab0;
case 0: lab1:
return 0; z->c = z->l - m;
case 1: if (!(eq_s_b(z, 1, s_5))) return 0;
{ }
int m = z->l - z->c; /* or, line 182 */ lab0:
{ int ret;
if (!(eq_s_b(z, 1, s_4))) ret = slice_del(z); /* delete, line 145 */
goto lab1; if (ret < 0) return ret;
goto lab0; }
lab1: break;
z->c = z->l - m; case 2:
if (!(eq_s_b(z, 1, s_5))) { int ret;
return 0; ret = slice_del(z); /* delete, line 153 */
} if (ret < 0) return ret;
lab0: }
slice_del(z); /* delete, line 182 */ break;
break; }
case 2: return 1;
slice_del(z); /* delete, line 190 */
break;
}
return 1;
} }
static int static int r_noun(struct SN_env * z) {
r_noun(struct SN_env * z) int among_var;
{ z->ket = z->c; /* [, line 162 */
int among_var; among_var = find_among_b(z, a_5, 36); /* substring, line 162 */
if (!(among_var)) return 0;
z->ket = z->c; /* [, line 199 */ z->bra = z->c; /* ], line 162 */
among_var = find_among_b(z, a_5, 36); /* substring, line 199 */ switch(among_var) {
if (!(among_var)) case 0: return 0;
return 0; case 1:
z->bra = z->c; /* ], line 199 */ { int ret;
switch (among_var) ret = slice_del(z); /* delete, line 169 */
{ if (ret < 0) return ret;
case 0: }
return 0; break;
case 1: }
slice_del(z); /* delete, line 206 */ return 1;
break;
}
return 1;
} }
static int static int r_derivational(struct SN_env * z) {
r_derivational(struct SN_env * z) int among_var;
{ z->ket = z->c; /* [, line 178 */
int among_var; among_var = find_among_b(z, a_6, 2); /* substring, line 178 */
if (!(among_var)) return 0;
z->ket = z->c; /* [, line 215 */ z->bra = z->c; /* ], line 178 */
among_var = find_among_b(z, a_6, 2); /* substring, line 215 */ { int ret = r_R2(z);
if (!(among_var)) if (ret == 0) return 0; /* call R2, line 178 */
return 0; if (ret < 0) return ret;
z->bra = z->c; /* ], line 215 */ }
if (!r_R2(z)) switch(among_var) {
return 0; /* call R2, line 215 */ case 0: return 0;
switch (among_var) case 1:
{ { int ret;
case 0: ret = slice_del(z); /* delete, line 181 */
return 0; if (ret < 0) return ret;
case 1: }
slice_del(z); /* delete, line 218 */ break;
break; }
} return 1;
return 1;
} }
static int static int r_tidy_up(struct SN_env * z) {
r_tidy_up(struct SN_env * z) int among_var;
{ z->ket = z->c; /* [, line 186 */
int among_var; among_var = find_among_b(z, a_7, 4); /* substring, line 186 */
if (!(among_var)) return 0;
z->ket = z->c; /* [, line 223 */ z->bra = z->c; /* ], line 186 */
among_var = find_among_b(z, a_7, 4); /* substring, line 223 */ switch(among_var) {
if (!(among_var)) case 0: return 0;
return 0; case 1:
z->bra = z->c; /* ], line 223 */ { int ret;
switch (among_var) ret = slice_del(z); /* delete, line 190 */
{ if (ret < 0) return ret;
case 0: }
return 0; z->ket = z->c; /* [, line 191 */
case 1: if (!(eq_s_b(z, 1, s_6))) return 0;
slice_del(z); /* delete, line 227 */ z->bra = z->c; /* ], line 191 */
z->ket = z->c; /* [, line 228 */ if (!(eq_s_b(z, 1, s_7))) return 0;
if (!(eq_s_b(z, 1, s_6))) { int ret;
return 0; ret = slice_del(z); /* delete, line 191 */
z->bra = z->c; /* ], line 228 */ if (ret < 0) return ret;
if (!(eq_s_b(z, 1, s_7))) }
return 0; break;
slice_del(z); /* delete, line 228 */ case 2:
break; if (!(eq_s_b(z, 1, s_8))) return 0;
case 2: { int ret;
if (!(eq_s_b(z, 1, s_8))) ret = slice_del(z); /* delete, line 194 */
return 0; if (ret < 0) return ret;
slice_del(z); /* delete, line 231 */ }
break; break;
case 3: case 3:
slice_del(z); /* delete, line 233 */ { int ret;
break; ret = slice_del(z); /* delete, line 196 */
} if (ret < 0) return ret;
return 1; }
break;
}
return 1;
} }
extern int extern int russian_KOI8_R_stem(struct SN_env * z) {
russian_stem(struct SN_env * z) { int c = z->c; /* do, line 203 */
{ { int ret = r_mark_regions(z);
{ if (ret == 0) goto lab0; /* call mark_regions, line 203 */
int c = z->c; /* do, line 240 */ if (ret < 0) return ret;
}
if (!r_mark_regions(z)) lab0:
goto lab0; /* call mark_regions, line 240 */ z->c = c;
lab0: }
z->c = c; z->lb = z->c; z->c = z->l; /* backwards, line 204 */
}
z->lb = z->c; { int m3; /* setlimit, line 204 */
z->c = z->l; /* backwards, line 241 */ int m = z->l - z->c; (void) m;
if (z->c < z->I[0]) return 0;
{ z->c = z->I[0]; /* tomark, line 204 */
int m = z->l - z->c; /* setlimit, line 241 */ m3 = z->lb; z->lb = z->c;
int m3; z->c = z->l - m;
{ int m = z->l - z->c; (void) m; /* do, line 205 */
if (z->c < z->I[0]) { int m = z->l - z->c; (void) m; /* or, line 206 */
return 0; { int ret = r_perfective_gerund(z);
z->c = z->I[0]; /* tomark, line 241 */ if (ret == 0) goto lab3; /* call perfective_gerund, line 206 */
m3 = z->lb; if (ret < 0) return ret;
z->lb = z->c; }
z->c = z->l - m; goto lab2;
{ lab3:
int m = z->l - z->c; /* do, line 242 */ z->c = z->l - m;
{ int m = z->l - z->c; (void) m; /* try, line 207 */
{ { int ret = r_reflexive(z);
int m = z->l - z->c; /* or, line 243 */ if (ret == 0) { z->c = z->l - m; goto lab4; } /* call reflexive, line 207 */
if (ret < 0) return ret;
if (!r_perfective_gerund(z)) }
goto lab3; /* call perfective_gerund, line 243 */ lab4:
goto lab2; ;
lab3: }
z->c = z->l - m; { int m = z->l - z->c; (void) m; /* or, line 208 */
{ { int ret = r_adjectival(z);
int m = z->l - z->c; /* try, line 244 */ if (ret == 0) goto lab6; /* call adjectival, line 208 */
if (ret < 0) return ret;
if (!r_reflexive(z)) }
{ goto lab5;
z->c = z->l - m; lab6:
goto lab4; z->c = z->l - m;
} /* call reflexive, line 244 */ { int ret = r_verb(z);
lab4: if (ret == 0) goto lab7; /* call verb, line 208 */
; if (ret < 0) return ret;
} }
{ goto lab5;
int m = z->l - z->c; /* or, line 245 */ lab7:
z->c = z->l - m;
if (!r_adjectival(z)) { int ret = r_noun(z);
goto lab6; /* call adjectival, line 245 */ if (ret == 0) goto lab1; /* call noun, line 208 */
goto lab5; if (ret < 0) return ret;
lab6: }
z->c = z->l - m; }
if (!r_verb(z)) lab5:
goto lab7; /* call verb, line 245 */ ;
goto lab5; }
lab7: lab2:
z->c = z->l - m; lab1:
if (!r_noun(z)) z->c = z->l - m;
goto lab1; /* call noun, line 245 */ }
} { int m = z->l - z->c; (void) m; /* try, line 211 */
lab5: z->ket = z->c; /* [, line 211 */
; if (!(eq_s_b(z, 1, s_9))) { z->c = z->l - m; goto lab8; }
} z->bra = z->c; /* ], line 211 */
lab2: { int ret;
lab1: ret = slice_del(z); /* delete, line 211 */
z->c = z->l - m; if (ret < 0) return ret;
} }
{ lab8:
int m = z->l - z->c; /* try, line 248 */ ;
}
z->ket = z->c; /* [, line 248 */ { int m = z->l - z->c; (void) m; /* do, line 214 */
if (!(eq_s_b(z, 1, s_9))) { int ret = r_derivational(z);
{ if (ret == 0) goto lab9; /* call derivational, line 214 */
z->c = z->l - m; if (ret < 0) return ret;
goto lab8; }
} lab9:
z->bra = z->c; /* ], line 248 */ z->c = z->l - m;
slice_del(z); /* delete, line 248 */ }
lab8: { int m = z->l - z->c; (void) m; /* do, line 215 */
; { int ret = r_tidy_up(z);
} if (ret == 0) goto lab10; /* call tidy_up, line 215 */
{ if (ret < 0) return ret;
int m = z->l - z->c; /* do, line 251 */ }
lab10:
if (!r_derivational(z)) z->c = z->l - m;
goto lab9; /* call derivational, line 251 */ }
lab9: z->lb = m3;
z->c = z->l - m; }
} z->c = z->lb;
{ return 1;
int m = z->l - z->c; /* do, line 252 */
if (!r_tidy_up(z))
goto lab10; /* call tidy_up, line 252 */
lab10:
z->c = z->l - m;
}
z->lb = m3;
}
z->c = z->lb;
return 1;
} }
extern struct SN_env * extern struct SN_env * russian_KOI8_R_create_env(void) { return SN_create_env(0, 2, 0); }
russian_create_env(void)
{ extern void russian_KOI8_R_close_env(struct SN_env * z) { SN_close_env(z); }
return SN_create_env(0, 2, 0);
}
extern void
russian_close_env(struct SN_env * z)
{
SN_close_env(z);
}
/* This file was generated automatically by the Snowball to ANSI C compiler */ /* This file was generated automatically by the Snowball to ANSI C compiler */
extern struct SN_env *russian_create_env(void); #ifdef __cplusplus
extern void russian_close_env(struct SN_env * z); extern "C" {
#endif
extern struct SN_env * russian_KOI8_R_create_env(void);
extern void russian_KOI8_R_close_env(struct SN_env * z);
extern int russian_KOI8_R_stem(struct SN_env * z);
#ifdef __cplusplus
}
#endif
extern int russian_stem(struct SN_env * z);
...@@ -9,510 +9,438 @@ ...@@ -9,510 +9,438 @@
#define CREATE_SIZE 1 #define CREATE_SIZE 1
symbol * extern symbol * create_s(void) {
create_s(void) symbol * p;
{ void * mem = malloc(HEAD + (CREATE_SIZE + 1) * sizeof(symbol));
symbol *p = (symbol *) (HEAD + (char *) malloc(HEAD + (CREATE_SIZE + 1) * sizeof(symbol))); if (mem == NULL) return NULL;
p = (symbol *) (HEAD + (char *) mem);
CAPACITY(p) = CREATE_SIZE;
SET_SIZE(p, CREATE_SIZE);
return p;
}
if (p == (symbol *) (HEAD)) extern void lose_s(symbol * p) {
return NULL; if (p == NULL) return;
CAPACITY(p) = CREATE_SIZE; free((char *) p - HEAD);
SET_SIZE(p, CREATE_SIZE);
return p;
} }
void /*
lose_s(symbol * p) new_p = X_skip_utf8(p, c, lb, l, n); skips n characters forwards from p + c
{ if n +ve, or n characters backwards from p +c - 1 if n -ve. new_p is the new
free((char *) p - HEAD); position, or 0 on failure.
-- used to implement hop and next in the utf8 case.
*/
extern int skip_utf8(const symbol * p, int c, int lb, int l, int n) {
int b;
if (n >= 0) {
for (; n > 0; n--) {
if (c >= l) return -1;
b = p[c++];
if (b >= 0xC0) { /* 1100 0000 */
while (c < l) {
b = p[c];
if (b >= 0xC0 || b < 0x80) break;
/* break unless b is 10------ */
c++;
}
}
}
} else {
for (; n < 0; n++) {
if (c <= lb) return -1;
b = p[--c];
if (b >= 0x80) { /* 1000 0000 */
while (c > lb) {
b = p[c];
if (b >= 0xC0) break; /* 1100 0000 */
c--;
}
}
}
}
return c;
} }
int /* Code for character groupings: utf8 cases */
in_grouping(struct SN_env * z, unsigned char *s, int min, int max)
{ static int get_utf8(const symbol * p, int c, int l, int * slot) {
if (z->c >= z->l) int b0, b1;
return 0; if (c >= l) return 0;
{ b0 = p[c++];
int ch = z->p[z->c]; if (b0 < 0xC0 || c == l) { /* 1100 0000 */
* slot = b0; return 1;
if }
(ch > max || (ch -= min) < 0 || b1 = p[c++];
(s[ch >> 3] & (0X1 << (ch & 0X7))) == 0) if (b0 < 0xE0 || c == l) { /* 1110 0000 */
return 0; * slot = (b0 & 0x1F) << 6 | (b1 & 0x3F); return 2;
} }
z->c++; * slot = (b0 & 0xF) << 12 | (b1 & 0x3F) << 6 | (*p & 0x3F); return 3;
return 1;
} }
int static int get_b_utf8(const symbol * p, int c, int lb, int * slot) {
in_grouping_b(struct SN_env * z, unsigned char *s, int min, int max) int b0, b1;
{ if (c <= lb) return 0;
if (z->c <= z->lb) b0 = p[--c];
return 0; if (b0 < 0x80 || c == lb) { /* 1000 0000 */
{ * slot = b0; return 1;
int ch = z->p[z->c - 1]; }
b1 = p[--c];
if if (b1 >= 0xC0 || c == lb) { /* 1100 0000 */
(ch > max || (ch -= min) < 0 || * slot = (b1 & 0x1F) << 6 | (b0 & 0x3F); return 2;
(s[ch >> 3] & (0X1 << (ch & 0X7))) == 0) }
return 0; * slot = (*p & 0xF) << 12 | (b1 & 0x3F) << 6 | (b0 & 0x3F); return 3;
}
z->c--;
return 1;
} }
int extern int in_grouping_U(struct SN_env * z, unsigned char * s, int min, int max) {
out_grouping(struct SN_env * z, unsigned char *s, int min, int max) int ch;
{ int w = get_utf8(z->p, z->c, z->l, & ch);
if (z->c >= z->l) unless (w) return 0;
return 0; if (ch > max || (ch -= min) < 0 || (s[ch >> 3] & (0X1 << (ch & 0X7))) == 0) return 0;
{ z->c += w; return 1;
int ch = z->p[z->c];
unless
(ch > max || (ch -= min) < 0 ||
(s[ch >> 3] & (0X1 << (ch & 0X7))) == 0) return 0;
}
z->c++;
return 1;
} }
int extern int in_grouping_b_U(struct SN_env * z, unsigned char * s, int min, int max) {
out_grouping_b(struct SN_env * z, unsigned char *s, int min, int max) int ch;
{ int w = get_b_utf8(z->p, z->c, z->lb, & ch);
if (z->c <= z->lb) unless (w) return 0;
return 0; if (ch > max || (ch -= min) < 0 || (s[ch >> 3] & (0X1 << (ch & 0X7))) == 0) return 0;
{ z->c -= w; return 1;
int ch = z->p[z->c - 1];
unless
(ch > max || (ch -= min) < 0 ||
(s[ch >> 3] & (0X1 << (ch & 0X7))) == 0) return 0;
}
z->c--;
return 1;
} }
extern int out_grouping_U(struct SN_env * z, unsigned char * s, int min, int max) {
int ch;
int w = get_utf8(z->p, z->c, z->l, & ch);
unless (w) return 0;
unless (ch > max || (ch -= min) < 0 || (s[ch >> 3] & (0X1 << (ch & 0X7))) == 0) return 0;
z->c += w; return 1;
}
int extern int out_grouping_b_U(struct SN_env * z, unsigned char * s, int min, int max) {
in_range(struct SN_env * z, int min, int max) int ch;
{ int w = get_b_utf8(z->p, z->c, z->lb, & ch);
if (z->c >= z->l) unless (w) return 0;
return 0; unless (ch > max || (ch -= min) < 0 || (s[ch >> 3] & (0X1 << (ch & 0X7))) == 0) return 0;
{ z->c -= w; return 1;
int ch = z->p[z->c];
if
(ch > max || ch < min)
return 0;
}
z->c++;
return 1;
} }
int /* Code for character groupings: non-utf8 cases */
in_range_b(struct SN_env * z, int min, int max)
{ extern int in_grouping(struct SN_env * z, unsigned char * s, int min, int max) {
if (z->c <= z->lb) int ch;
return 0; if (z->c >= z->l) return 0;
{ ch = z->p[z->c];
int ch = z->p[z->c - 1]; if (ch > max || (ch -= min) < 0 || (s[ch >> 3] & (0X1 << (ch & 0X7))) == 0) return 0;
z->c++; return 1;
if
(ch > max || ch < min)
return 0;
}
z->c--;
return 1;
} }
int extern int in_grouping_b(struct SN_env * z, unsigned char * s, int min, int max) {
out_range(struct SN_env * z, int min, int max) int ch;
{ if (z->c <= z->lb) return 0;
if (z->c >= z->l) ch = z->p[z->c - 1];
return 0; if (ch > max || (ch -= min) < 0 || (s[ch >> 3] & (0X1 << (ch & 0X7))) == 0) return 0;
{ z->c--; return 1;
int ch = z->p[z->c];
unless
(ch > max || ch < min) return 0;
}
z->c++;
return 1;
} }
int extern int out_grouping(struct SN_env * z, unsigned char * s, int min, int max) {
out_range_b(struct SN_env * z, int min, int max) int ch;
{ if (z->c >= z->l) return 0;
if (z->c <= z->lb) ch = z->p[z->c];
return 0; unless (ch > max || (ch -= min) < 0 || (s[ch >> 3] & (0X1 << (ch & 0X7))) == 0) return 0;
{ z->c++; return 1;
int ch = z->p[z->c - 1];
unless
(ch > max || ch < min) return 0;
}
z->c--;
return 1;
} }
int extern int out_grouping_b(struct SN_env * z, unsigned char * s, int min, int max) {
eq_s(struct SN_env * z, int s_size, symbol * s) int ch;
{ if (z->c <= z->lb) return 0;
if (z->l - z->c < s_size || ch = z->p[z->c - 1];
memcmp(z->p + z->c, s, s_size * sizeof(symbol)) != 0) unless (ch > max || (ch -= min) < 0 || (s[ch >> 3] & (0X1 << (ch & 0X7))) == 0) return 0;
return 0; z->c--; return 1;
z->c += s_size;
return 1;
} }
int extern int eq_s(struct SN_env * z, int s_size, symbol * s) {
eq_s_b(struct SN_env * z, int s_size, symbol * s) if (z->l - z->c < s_size || memcmp(z->p + z->c, s, s_size * sizeof(symbol)) != 0) return 0;
{ z->c += s_size; return 1;
if (z->c - z->lb < s_size ||
memcmp(z->p + z->c - s_size, s, s_size * sizeof(symbol)) != 0)
return 0;
z->c -= s_size;
return 1;
} }
int extern int eq_s_b(struct SN_env * z, int s_size, symbol * s) {
eq_v(struct SN_env * z, symbol * p) if (z->c - z->lb < s_size || memcmp(z->p + z->c - s_size, s, s_size * sizeof(symbol)) != 0) return 0;
{ z->c -= s_size; return 1;
return eq_s(z, SIZE(p), p);
} }
int extern int eq_v(struct SN_env * z, symbol * p) {
eq_v_b(struct SN_env * z, symbol * p) return eq_s(z, SIZE(p), p);
{
return eq_s_b(z, SIZE(p), p);
} }
int extern int eq_v_b(struct SN_env * z, symbol * p) {
find_among(struct SN_env * z, struct among * v, int v_size) return eq_s_b(z, SIZE(p), p);
{ }
int i = 0;
int j = v_size; extern int find_among(struct SN_env * z, struct among * v, int v_size) {
int c = z->c; int i = 0;
int l = z->l; int j = v_size;
symbol *q = z->p + c;
int c = z->c; int l = z->l;
struct among *w; symbol * q = z->p + c;
int common_i = 0; struct among * w;
int common_j = 0;
int common_i = 0;
int first_key_inspected = 0; int common_j = 0;
while (1) int first_key_inspected = 0;
{
int k = i + ((j - i) >> 1); while(1) {
int diff = 0; int k = i + ((j - i) >> 1);
int common = common_i < common_j ? common_i : common_j; /* smaller */ int diff = 0;
int common = common_i < common_j ? common_i : common_j; /* smaller */
w = v + k; w = v + k;
{ {
int i; int i; for (i = common; i < w->s_size; i++) {
if (c + common == l) { diff = -1; break; }
for (i = common; i < w->s_size; i++) diff = q[common] - w->s[i];
{ if (diff != 0) break;
if (c + common == l) common++;
{ }
diff = -1; }
break; if (diff < 0) { j = k; common_j = common; }
} else { i = k; common_i = common; }
diff = q[common] - w->s[i]; if (j - i <= 1) {
if (diff != 0) if (i > 0) break; /* v->s has been inspected */
break; if (j == i) break; /* only one item in v */
common++;
} /* - but now we need to go round once more to get
} v->s inspected. This looks messy, but is actually
if (diff < 0) the optimal approach. */
{
j = k; if (first_key_inspected) break;
common_j = common; first_key_inspected = 1;
} }
else }
{ while(1) {
i = k; w = v + i;
common_i = common; if (common_i >= w->s_size) {
} z->c = c + w->s_size;
if (j - i <= 1) if (w->function == 0) return w->result;
{ {
if (i > 0) int res = w->function(z);
break; /* v->s has been inspected */ z->c = c + w->s_size;
if (j == i) if (res) return w->result;
break; /* only one item in v */ }
}
/* i = w->substring_i;
* - but now we need to go round once more to get v->s if (i < 0) return 0;
* inspected. This looks messy, but is actually the optimal }
* approach.
*/
if (first_key_inspected)
break;
first_key_inspected = 1;
}
}
while (1)
{
w = v + i;
if (common_i >= w->s_size)
{
z->c = c + w->s_size;
if (w->function == 0)
return w->result;
{
int res = w->function(z);
z->c = c + w->s_size;
if (res)
return w->result;
}
}
i = w->substring_i;
if (i < 0)
return 0;
}
} }
/* find_among_b is for backwards processing. Same comments apply */ /* find_among_b is for backwards processing. Same comments apply */
int extern int find_among_b(struct SN_env * z, struct among * v, int v_size) {
find_among_b(struct SN_env * z, struct among * v, int v_size)
{ int i = 0;
int i = 0; int j = v_size;
int j = v_size;
int c = z->c; int lb = z->lb;
int c = z->c; symbol * q = z->p + c - 1;
int lb = z->lb;
symbol *q = z->p + c - 1; struct among * w;
struct among *w; int common_i = 0;
int common_j = 0;
int common_i = 0;
int common_j = 0; int first_key_inspected = 0;
int first_key_inspected = 0; while(1) {
int k = i + ((j - i) >> 1);
while (1) int diff = 0;
{ int common = common_i < common_j ? common_i : common_j;
int k = i + ((j - i) >> 1); w = v + k;
int diff = 0; {
int common = common_i < common_j ? common_i : common_j; int i; for (i = w->s_size - 1 - common; i >= 0; i--) {
if (c - common == lb) { diff = -1; break; }
w = v + k; diff = q[- common] - w->s[i];
{ if (diff != 0) break;
int i; common++;
}
for (i = w->s_size - 1 - common; i >= 0; i--) }
{ if (diff < 0) { j = k; common_j = common; }
if (c - common == lb) else { i = k; common_i = common; }
{ if (j - i <= 1) {
diff = -1; if (i > 0) break;
break; if (j == i) break;
} if (first_key_inspected) break;
diff = q[-common] - w->s[i]; first_key_inspected = 1;
if (diff != 0) }
break; }
common++; while(1) {
} w = v + i;
} if (common_i >= w->s_size) {
if (diff < 0) z->c = c - w->s_size;
{ if (w->function == 0) return w->result;
j = k; {
common_j = common; int res = w->function(z);
} z->c = c - w->s_size;
else if (res) return w->result;
{ }
i = k; }
common_i = common; i = w->substring_i;
} if (i < 0) return 0;
if (j - i <= 1) }
{
if (i > 0)
break;
if (j == i)
break;
if (first_key_inspected)
break;
first_key_inspected = 1;
}
}
while (1)
{
w = v + i;
if (common_i >= w->s_size)
{
z->c = c - w->s_size;
if (w->function == 0)
return w->result;
{
int res = w->function(z);
z->c = c - w->s_size;
if (res)
return w->result;
}
}
i = w->substring_i;
if (i < 0)
return 0;
}
} }
symbol * /* Increase the size of the buffer pointed to by p to at least n symbols.
increase_size(symbol * p, int n) * If insufficient memory, returns NULL and frees the old buffer.
{ */
int new_size = n + 20; static symbol * increase_size(symbol * p, int n) {
symbol *q = (symbol *) (HEAD + (char *) malloc(HEAD + (new_size + 1) * sizeof(symbol))); symbol * q;
int new_size = n + 20;
CAPACITY(q) = new_size; void * mem = realloc((char *) p - HEAD,
memmove(q, p, CAPACITY(p) * sizeof(symbol)); HEAD + (new_size + 1) * sizeof(symbol));
lose_s(p); if (mem == NULL) {
return q; lose_s(p);
return NULL;
}
q = (symbol *) (HEAD + (char *)mem);
CAPACITY(q) = new_size;
return q;
} }
/* to replace symbols between c_bra and c_ket in z->p by the /* to replace symbols between c_bra and c_ket in z->p by the
s_size symbols at s s_size symbols at s.
Returns 0 on success, -1 on error.
Also, frees z->p (and sets it to NULL) on error.
*/ */
extern int replace_s(struct SN_env * z, int c_bra, int c_ket, int s_size, const symbol * s, int * adjptr)
int
replace_s(struct SN_env * z, int c_bra, int c_ket, int s_size, const symbol * s)
{ {
int adjustment = s_size - (c_ket - c_bra); int adjustment;
int len = SIZE(z->p); int len;
if (z->p == NULL) {
if (adjustment != 0) z->p = create_s();
{ if (z->p == NULL) return -1;
if (adjustment + len > CAPACITY(z->p)) }
z->p = increase_size(z->p, adjustment + len); adjustment = s_size - (c_ket - c_bra);
memmove(z->p + c_ket + adjustment, z->p + c_ket, (len - c_ket) * sizeof(symbol)); len = SIZE(z->p);
SET_SIZE(z->p, adjustment + len); if (adjustment != 0) {
z->l += adjustment; if (adjustment + len > CAPACITY(z->p)) {
if (z->c >= c_ket) z->p = increase_size(z->p, adjustment + len);
z->c += adjustment; if (z->p == NULL) return -1;
else if (z->c > c_bra) }
z->c = c_bra; memmove(z->p + c_ket + adjustment,
} z->p + c_ket,
unless(s_size == 0) memmove(z->p + c_bra, s, s_size * sizeof(symbol)); (len - c_ket) * sizeof(symbol));
return adjustment; SET_SIZE(z->p, adjustment + len);
z->l += adjustment;
if (z->c >= c_ket)
z->c += adjustment;
else
if (z->c > c_bra)
z->c = c_bra;
}
unless (s_size == 0) memmove(z->p + c_bra, s, s_size * sizeof(symbol));
if (adjptr != NULL)
*adjptr = adjustment;
return 0;
} }
static void static int slice_check(struct SN_env * z) {
slice_check(struct SN_env * z)
{ if (z->bra < 0 ||
if (!(0 <= z->bra && z->bra > z->ket ||
z->bra <= z->ket && z->ket > z->l ||
z->ket <= z->l && z->p == NULL ||
z->l <= SIZE(z->p))) /* this line could be removed */ z->l > SIZE(z->p)) /* this line could be removed */
{ {
fprintf(stderr, "faulty slice operation:\n"); #if 0
debug(z, -1, 0); fprintf(stderr, "faulty slice operation:\n");
exit(1); debug(z, -1, 0);
} #endif
return -1;
}
return 0;
} }
void extern int slice_from_s(struct SN_env * z, int s_size, symbol * s) {
slice_from_s(struct SN_env * z, int s_size, symbol * s) if (slice_check(z)) return -1;
{ return replace_s(z, z->bra, z->ket, s_size, s, NULL);
slice_check(z);
replace_s(z, z->bra, z->ket, s_size, s);
} }
void extern int slice_from_v(struct SN_env * z, symbol * p) {
slice_from_v(struct SN_env * z, symbol * p) return slice_from_s(z, SIZE(p), p);
{
slice_from_s(z, SIZE(p), p);
} }
void extern int slice_del(struct SN_env * z) {
slice_del(struct SN_env * z) return slice_from_s(z, 0, 0);
{
slice_from_s(z, 0, NULL);
} }
void extern int insert_s(struct SN_env * z, int bra, int ket, int s_size, symbol * s) {
insert_s(struct SN_env * z, int bra, int ket, int s_size, symbol * s) int adjustment;
{ if (replace_s(z, bra, ket, s_size, s, &adjustment))
int adjustment = replace_s(z, bra, ket, s_size, s); return -1;
if (bra <= z->bra) z->bra += adjustment;
if (bra <= z->bra) if (bra <= z->ket) z->ket += adjustment;
z->bra += adjustment; return 0;
if (bra <= z->ket)
z->ket += adjustment;
} }
void extern int insert_v(struct SN_env * z, int bra, int ket, symbol * p) {
insert_v(struct SN_env * z, int bra, int ket, symbol * p) int adjustment;
{ if (replace_s(z, bra, ket, SIZE(p), p, &adjustment))
int adjustment = replace_s(z, bra, ket, SIZE(p), p); return -1;
if (bra <= z->bra) z->bra += adjustment;
if (bra <= z->bra) if (bra <= z->ket) z->ket += adjustment;
z->bra += adjustment; return 0;
if (bra <= z->ket)
z->ket += adjustment;
} }
symbol * extern symbol * slice_to(struct SN_env * z, symbol * p) {
slice_to(struct SN_env * z, symbol * p) if (slice_check(z)) {
{ lose_s(p);
slice_check(z); return NULL;
{ }
int len = z->ket - z->bra; {
int len = z->ket - z->bra;
if (CAPACITY(p) < len) if (CAPACITY(p) < len) {
p = increase_size(p, len); p = increase_size(p, len);
memmove(p, z->p + z->bra, len * sizeof(symbol)); if (p == NULL)
SET_SIZE(p, len); return NULL;
} }
return p; memmove(p, z->p + z->bra, len * sizeof(symbol));
SET_SIZE(p, len);
}
return p;
} }
symbol * extern symbol * assign_to(struct SN_env * z, symbol * p) {
assign_to(struct SN_env * z, symbol * p) int len = z->l;
{ if (CAPACITY(p) < len) {
int len = z->l; p = increase_size(p, len);
if (p == NULL)
if (CAPACITY(p) < len) return NULL;
p = increase_size(p, len); }
memmove(p, z->p, len * sizeof(symbol)); memmove(p, z->p, len * sizeof(symbol));
SET_SIZE(p, len); SET_SIZE(p, len);
return p; return p;
} }
void #if 0
debug(struct SN_env * z, int number, int line_count) extern void debug(struct SN_env * z, int number, int line_count) {
{ int i;
int i; int limit = SIZE(z->p);
int limit = SIZE(z->p); /*if (number >= 0) printf("%3d (line %4d): '", number, line_count);*/
if (number >= 0) printf("%3d (line %4d): [%d]'", number, line_count,limit);
/* if (number >= 0) printf("%3d (line %4d): '", number, line_count); */ for (i = 0; i <= limit; i++) {
if (number >= 0) if (z->lb == i) printf("{");
printf("%3d (line %4d): [%d]'", number, line_count, limit); if (z->bra == i) printf("[");
for (i = 0; i <= limit; i++) if (z->c == i) printf("|");
{ if (z->ket == i) printf("]");
if (z->lb == i) if (z->l == i) printf("}");
printf("{"); if (i < limit)
if (z->bra == i) { int ch = z->p[i];
printf("["); if (ch == 0) ch = '#';
if (z->c == i) printf("%c", ch);
printf("|"); }
if (z->ket == i) }
printf("]"); printf("'\n");
if (z->l == i)
printf("}");
if (i < limit)
{
int ch = z->p[i];
if (ch == 0)
ch = '#';
printf("%c", ch);
}
}
printf("'\n");
} }
#endif
# $PostgreSQL: pgsql/contrib/tsearch2/wordparser/Makefile,v 1.5 2003/11/29 19:51:36 pgsql Exp $ # $PostgreSQL: pgsql/contrib/tsearch2/wordparser/Makefile,v 1.6 2005/09/15 11:14:18 teodor Exp $
subdir = contrib/tsearch2/wordparser
PG_CPPFLAGS = -I$(srcdir)/..
SUBOBJS = parser.o deflex.o
EXTRA_CLEAN = SUBSYS.o $(SUBOBJS) parser.c
ifdef USE_PGXS
PGXS = $(shell pg_config --pgxs)
include $(PGXS)
else
subdir = contrib/tsearch2
top_builddir = ../../.. top_builddir = ../../..
include $(top_builddir)/src/Makefile.global include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif
PG_CPPFLAGS = -I$(srcdir)/..
override CFLAGS += $(CFLAGS_SL) override CFLAGS += $(CFLAGS_SL)
SUBOBJS = parser.o deflex.o
all: SUBSYS.o all: SUBSYS.o
parser.c: parser.l parser.c: parser.l
...@@ -22,6 +29,4 @@ endif ...@@ -22,6 +29,4 @@ endif
SUBSYS.o: $(SUBOBJS) SUBSYS.o: $(SUBOBJS)
$(LD) $(LDREL) $(LDOUT) $@ $^ $(LD) $(LDREL) $(LDOUT) $@ $^
EXTRA_CLEAN = SUBSYS.o $(SUBOBJS) parser.c
include $(top_srcdir)/contrib/contrib-global.mk
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment