ChangZhuo Chen (陳昌倬)
ChangZhuo Chen (陳昌倬)
Also https://github.com/chewing/windows-chewing-tsf/issues/59
Also https://github.com/chewing/windows-chewing-tsf/issues/62
I think we already has some checks implemented in https://github.com/chewing/libchewing/blob/master/src/tools/init_database.c for `phone.cin` and `tsi.src`. Not sure if any check is missing for these two.
@kcwu, do you think we can just use a stricter parser in `init_database.c`, or we really need a separate validator?
有哪些名詞需要新增?可以舉例嗎?
`git subtree` or `git submodule` can do the trick, but I am not sure if it worth or not. Maybe we can discuss in https://groups.google.com/forum/#!forum/chewing-devel ?
`valgrind` suggests that we need to improve `SaveList`. `SaveList` is used to calculate all possible combination of phrasing via recursive. The problem of `SaveList` is that it calculate the same...
For the phrasing, it looks like a dynamic programming problem. Assume `P(x,y)` is the maximum phrasing score between x and y. The recursive definition of `P(x,y)` is listed as following:...
@kcwu Is there any link for heuristic rule? And what is the feature of `NextCut()`?
The original goal is to improve the performance because current [windows-chewing-tsf](https://github.com/chewing/windows-chewing-tsf) has non neglected delay when preedit buffer length is greater than 20 in sqlite_userphrase build. The `feature/sqlite_userphrase` is used...