00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef TOVARS_H
00026 #define TOVARS_H
00027
00028 #include <stdio.h>
00029
00030 #include "varable.h"
00031
00032
00033
00034
00035 extern FILE *rawfile;
00036 extern FILE *textfile;
00037 extern FILE *correct_fp;
00038 extern FILE *matcher_fp;
00039
00040 extern BOOL_VAR_H(tord_write_output, 0, "Text file output");
00041
00042 extern BOOL_VAR_H(tord_write_raw_output, 0, "Text before context");
00043
00044 extern BOOL_VAR_H(tord_similarity_enable, 0, "Switch for Similarity");
00045
00046 extern double_VAR_H(tord_certainty_threshold, -2.25, "Certainty Value");
00047
00048 extern INT_VAR_H(tord_num_word_choices, 30, "Number of choices");
00049
00050 extern BOOL_VAR_H(tord_blob_skip, 0, "Skip to Next selection");
00051
00052 extern double_VAR_H(tord_overlap_threshold, 0.33, "Overlap Threshold");
00053
00054 extern BOOL_VAR_H(tord_debug_3, 0, "Textord Debug #3");
00055
00056 extern BOOL_VAR_H(tord_debug_5, 0, "Textord Debug #5");
00057
00058 extern BOOL_VAR_H(tord_debug_8, 0, "Textord Debug #8");
00059
00060 extern INT_VAR_H(tord_display_ratings, 0, "Ratings display");
00061
00062 extern BOOL_VAR_H(tord_display_text, 0, "Display Text");
00063
00064 extern BOOL_VAR_H(tord_show_bold, 1, "Show Bold Text");
00065
00066 #endif