Mercurial > freewnn
view Wnn/jserver/kaiseki.h @ 26:6dcfbd28e807
- added build target; maintainer-clean
- removed even more generated file
- now autogen.sh invokes libtoolize
author | Yoshiki Yazawa <yaz@honeyplanet.jp> |
---|---|
date | Sat, 06 Mar 2010 07:58:49 +0900 |
parents | 466fe6732d8d |
children |
line wrap: on
line source
/* * $Id: kaiseki.h,v 1.5 2003/05/11 18:35:54 hiroo Exp $ */ /* * FreeWnn is a network-extensible Kana-to-Kanji conversion system. * This file is part of FreeWnn. * * Copyright Kyoto University Research Institute for Mathematical Sciences * 1987, 1988, 1989, 1990, 1991, 1992 * Copyright OMRON Corporation. 1987, 1988, 1989, 1990, 1991, 1992, 1999 * Copyright ASTEC, Inc. 1987, 1988, 1989, 1990, 1991, 1992 * Copyright FreeWnn Project 1999, 2000, 2003 * * Maintainer: FreeWnn Project <freewnn@tomo.gr.jp> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef JSERVER_KAISEKI_H #define JSERVER_KAISEKI_H 1 #ifdef STDC_HEADERS # include <sys/types.h> #endif /* STDC_HEADERS */ #ifdef GLOBAL_VALUE_DEFINE #undef GLOBAL #define GLOBAL #undef GLOBAL_VAL #define GLOBAL_VAL(v) = (v) #else #define GLOBAL extern #define GLOBAL_VAL(v) #endif /* GLOBAL_VALUE_DEFINE */ #include "commonhd.h" #include "ddefine.h" /********************* * header of daemon **********************/ #define WNN_BUN 0 #define WNN_ZENKOUHO 1 #define WNN_SHO 0 #define WNN_DAI 1 #define _MININT 0x80000000 #define HIRA_HYOUKA -2000; /* 全候補取り出しの時の平仮名の評価値 */ #define KATA_HYOUKA -1000; /* 全候補取り出しの時の片仮名の評価値 */ #define _DIVID(val, div) (((int)(val) > (int)0) ? ((val) / (div)) : ((val) * (div))) extern struct fzkkouho *getfzkoh_body (); extern struct fzkkouho *getfzkoh1_body (); #define getfzkoh(ichbnp_p,no) \ (((int)(no) < (int)FZKIBNO) ? &((ichbnp_p)->fzkib[no]) : getfzkoh_body(ichbnp_p,no)) #define getfzkoh1(ichbnp_p,no) \ (((int)(no) < (int)FZKIBNO) ? &((ichbnp_p)->fzkib1[no]) : getfzkoh1_body(ichbnp_p,no)) #define kan_ck_vector(h, v) \ (((((int)*((v) + ((h) / (sizeof(int)<<3))) >> (int)((int)(h) % (int)((int)sizeof(int)<<(int)3))) & 1) == 1) ? \ WNN_CONNECT_BK : WNN_NOT_CONNECT_BK) GLOBAL struct FT *ft; /* カレントの付属語テーブル */ /* 解析エリアの管理用のリスト */ struct free_list { struct free_list *lnk; int num; }; #define FIRST_BZD_KOSUU 200 /* 最初に取り出す大文節解析エリア */ #define BZD_KOSUU 20 /* 足らんかったら付け加える大きさ */ #define FIRST_SBN_KOSUU 200 /* 最初に取り出す小文節解析エリア */ #define SBN_KOSUU 20 /* 足らんかったら付け加える大きさ */ #define FIRST_ICHBN_KOSUU 20 /* 最初に取り出す付属語解析エリア */ #define ICHBN_KOSUU 4 /* 足らんかったら付け加える大きさ */ #define FIRST_JKDBN_KOSUU 50 /* 最初に取り出す大文節次候補エリア */ #define JKDBN_KOSUU 10 /* 足らんかったら付け加える大きさ */ #define FIRST_JKSBN_KOSUU 50 /* 最初に取り出す小文節次候補エリア */ #define JKSBN_KOSUU 10 /* 足らんかったら付け加える大きさ */ #define FIRST_JKSONE_KOSUU 300 /* 最初に取り出す小文節次候補エリア */ #define JKSONE_KOSUU 20 /* 足らんかったら付け加える大きさ */ /************************************************ * 擬似文節候補評価ルーチン * ************************************************/ /* #define HYOKAVAL(jiritugo_len, bnst_len) \ hyoka1(0x80, 0, (jiritugo_len), (bnst_len), 0) */ /* #define HYOKAVAL(hindo, jiritugo_len, bnst_len) \ hyoka1(0, hindo, (jiritugo_len), (bnst_len), 0) */ #define HYOKAVAL(hindo, jiritugo_len, bnst_len) \ (c_env->hindoval * (hindo) \ + c_env->jirival * (jiritugo_len) \ + c_env->lenval * (bnst_len) ) /************************************************ * 小文節候補評価ルーチン * ************************************************/ #define hyoka1(HINDO, HINDO_IN, LENGTH, BUNLNGTH, PRIO) \ (c_env->hindoval * (((HINDO) & 0x7f) + ((HINDO_IN) & 0x7f)) \ + c_env->jirival * (LENGTH) \ + c_env->lenval * (BUNLNGTH) \ + c_env->jishoval * (PRIO)\ + c_env->flagval * ((int)((HINDO) & 0x80) >> (int)7)) /************************************************ * 大文節候補評価ルーチン * ************************************************/ /* 大文節の評価値 sbn_val * 小文節の評価値の和 / 小文節数 + sbn_cnt_val * 小文節数 + dbn_len_val * 大文節長 */ #define hyoka_dbn(SON_V, SBNCNT, DAILEN) \ ((c_env->sbn_val * (SON_V)) / (SBNCNT) \ + c_env->sbn_cnt_val * (SBNCNT) \ + c_env->dbn_len_val * (DAILEN)) /* 大文節の評価値を前の文節と接続できるか否かで変える。 divid : 1 前の文節と接続できる hyouka * 2 0 大文節の先頭 hyouka -1 前の文節と接続できない hyouka / 2 */ #define DIVID_HYOUKA(hyouka, divid) \ (((divid) == 0) ? (hyouka) : \ (((divid)) > 0 ? ((hyouka) << 1) : ((hyouka) >> 1))) /********************* * kaiseki work area **********************/ GLOBAL w_char *bun; /* D */ GLOBAL w_char giji_eisuu[20]; /* 擬似「英数」の定義 */ GLOBAL size_t maxchg; GLOBAL int *maxj; /* maxj is counts to entries in jmt_ */ /* jmt_ptr is used in jmt0.c only. (untrue! do_dic_no.c use it 2003.05.09) but it must be changed by clients. jishobiki does not use it. this is sent to jishobiki by arguments */ GLOBAL struct jdata *j_e_p; /* holds the current point to which jmtw_ is used */ GLOBAL struct jdata **jmt_; GLOBAL struct jdata *jmtw_; GLOBAL struct jdata **jmt_end; GLOBAL struct jdata *jmtw_end; GLOBAL struct jdata **jmt_ptr; GLOBAL struct jdata ***jmtp; /******************************** * 疑似自立語の品詞 * ********************************/ #ifdef nodef GLOBAL int sentou_no; /* 「先頭」文節先頭に成れるもの */ GLOBAL int suuji_no; /* 「数字」数詞相当 */ GLOBAL int katakanago_no; /* 「カナ」外来語など 名詞相当 */ GLOBAL int eisuu_no; /* 「英数」 */ GLOBAL int kigou_no; /* 「記号」 */ GLOBAL int toji_kakko_no; /* 「閉括弧」 */ GLOBAL int fuzokugo_no; /* 付属語だけ */ GLOBAL int kai_kakko_no; /* 「開括弧」 */ GLOBAL int giji_no; /* 疑似 */ #endif /* nodef */ #define sentou_no 0 /* 「先頭」文節先頭に成れるもの */ #define suuji_no 1 /* 「数字」数詞相当 */ #define katakanago_no 2 /* 「カナ」外来語など 名詞相当 */ #define eisuu_no 3 /* 「英数」 */ #define kigou_no 4 /* 「記号」 */ #define toji_kakko_no 5 /* 「閉括弧」 */ #define fuzokugo_no 6 /* 付属語だけ */ #define kai_kakko_no 7 /* 「開括弧」 */ #define giji_no 8 /* 疑似 */ #endif /* JSERVER_KAISEKI_H */