Data Fields | |
ParsingChart *(* | init )(const char *, const Grammar *, Weight, int(*)(int), int(*)(int), int(*)(int), int(*)(int)) |
int(* | is_delimiter )(int) |
int(* | is_space )(int) |
int(* | is_never_delimiter )(int) |
int(* | is_sticky )(int) |
Weight | max_correction_cost |
Data structure that stores a complete configuration required to initialize a parsing chart
ParsingChart*(* ParsingChartInitConfig::init)(const char *, const Grammar *, Weight, int(*)(int), int(*)(int), int(*)(int), int(*)(int)) |
int(* ParsingChartInitConfig::is_delimiter)(int) |
Function used by the init
field to identify delimiter characters in the parsed sentence
int(* ParsingChartInitConfig::is_never_delimiter)(int) |
Function used by the init
field to identify characters that are never delimiter in the parsed sentence
int(* ParsingChartInitConfig::is_space)(int) |
Function used by the init
field to identify blank characters in the parsed sentence
int(* ParsingChartInitConfig::is_sticky)(int) |
Function used by the init
field to identify sticky characters in the parsed sentence
Maximal cost allowed to correct each word the parsed sentence