|
Tesseract
3.02
|
#include <dict.h>
Public Member Functions | |
| DawgArgs (DawgInfoVector *d, DawgInfoVector *c, DawgInfoVector *ud, DawgInfoVector *uc, float r, PermuterType p, int len, int e) | |
Public Attributes | |
| DawgInfoVector * | active_dawgs |
| DawgInfoVector * | constraints |
| DawgInfoVector * | updated_active_dawgs |
| DawgInfoVector * | updated_constraints |
| PermuterType | permuter |
| int | sought_word_length |
| float | rating_margin |
| float | rating_array [MAX_WERD_LENGTH] |
| int | end_char_choice_index |
| tesseract::DawgArgs::DawgArgs | ( | DawgInfoVector * | d, |
| DawgInfoVector * | c, | ||
| DawgInfoVector * | ud, | ||
| DawgInfoVector * | uc, | ||
| float | r, | ||
| PermuterType | p, | ||
| int | len, | ||
| int | e | ||
| ) | [inline] |
Definition at line 66 of file dict.h.
:
active_dawgs(d), constraints(c), updated_active_dawgs(ud),
updated_constraints(uc), rating_margin(r) {
for (int i = 0; i < MAX_WERD_LENGTH; ++i) {
rating_array[i] = NO_RATING;
}
permuter = p;
sought_word_length = len;
end_char_choice_index = e;
}
| PermuterType tesseract::DawgArgs::permuter |
| float tesseract::DawgArgs::rating_array[MAX_WERD_LENGTH] |