aboutsummaryrefslogtreecommitdiff
path: root/chinese/sunpinyin/files/patch-src_slm_thread_slmthread.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'chinese/sunpinyin/files/patch-src_slm_thread_slmthread.cpp')
-rw-r--r--chinese/sunpinyin/files/patch-src_slm_thread_slmthread.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/chinese/sunpinyin/files/patch-src_slm_thread_slmthread.cpp b/chinese/sunpinyin/files/patch-src_slm_thread_slmthread.cpp
deleted file mode 100644
index 723c45843d74..000000000000
--- a/chinese/sunpinyin/files/patch-src_slm_thread_slmthread.cpp
+++ /dev/null
@@ -1,17 +0,0 @@
---- src/slm/thread/slmthread.cpp.orig 2014-11-14 14:17:48 UTC
-+++ src/slm/thread/slmthread.cpp
-@@ -250,10 +250,10 @@ main(int argc, char* argv[])
-
- bool usingLogPr = slm.isUseLogPr();
-
-- #define EffectivePr(a) (float((usingLogPr) ? ((a) / log(2.0)) : (-log2((a)))))
-- #define OriginalPr(b) (float((usingLogPr) ? ((b) * log(2.0)) : (exp2(-(b)))))
-- #define EffectiveBow(a) (float((usingLogPr) ? (exp(-(a))) : ((a))))
-- #define OriginalBow(b) (float((usingLogPr) ? (-log((b))) : ((b))))
-+ #define EffectivePr(a) (float((usingLogPr) ? ((a) / logf(2.0f)) : (-log2f((a)))))
-+ #define OriginalPr(b) (float((usingLogPr) ? ((b) * logf(2.0f)) : (exp2f(-(b)))))
-+ #define EffectiveBow(a) (float((usingLogPr) ? (expf(-(a))) : ((a))))
-+ #define OriginalBow(b) (float((usingLogPr) ? (-logf((b))) : ((b))))
-
- printf("\nfirst pass..."); fflush(stdout);
- for (int lvl = 0; lvl <= slm.getN(); ++lvl) {