diff options
Diffstat (limited to 'native/src/correction.h')
-rw-r--r-- | native/src/correction.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/native/src/correction.h b/native/src/correction.h index 9559bbf12..2114eff4b 100644 --- a/native/src/correction.h +++ b/native/src/correction.h @@ -121,9 +121,9 @@ class Correction { bool needsToPrune() const; - int getFreqForSplitTwoWords( - const int *freqArray, const int *wordLengthArray, const bool isSpaceProximity, - const unsigned short *word); + int getFreqForSplitMultipleWords( + const int *freqArray, const int *wordLengthArray, const int wordCount, + const bool isSpaceProximity, const unsigned short *word); int getFinalFreq(const int freq, unsigned short **word, int* wordLength); int getFinalFreqForSubQueue(const int freq, unsigned short **word, int* wordLength, const int inputLength); @@ -151,8 +151,8 @@ class Correction { static int calculateFinalFreq(const int inputIndex, const int depth, const int freq, int *editDistanceTable, const Correction* correction, const int inputLength); - static int calcFreqForSplitTwoWords(const int *freqArray, const int *wordLengthArray, - const Correction* correction, const bool isSpaceProximity, + static int calcFreqForSplitMultipleWords(const int *freqArray, const int *wordLengthArray, + const int wordCount, const Correction* correction, const bool isSpaceProximity, const unsigned short *word); static double calcNormalizedScore(const unsigned short* before, const int beforeLength, const unsigned short* after, const int afterLength, const int score); |