Tesseract  3.02
tesseract-ocr/wordrec/closed.h
Go to the documentation of this file.
00001 /* -*-C-*-
00002  ********************************************************************************
00003  *
00004  * File:        closed.h  (Formerly closed.h)
00005  * Description:  Hash table for closed search states.
00006  * Author:       Mark Seaman, SW Productivity
00007  * Created:      Fri Oct 16 14:37:00 1987
00008  * Modified:     Fri May 25 11:27:11 1990 (Mark Seaman) marks@hpgrlt
00009  * Language:     C
00010  * Package:      N/A
00011  * Status:       Reusable Software Component
00012  *
00013  * (c) Copyright 1987, Hewlett-Packard Company.
00014  ** Licensed under the Apache License, Version 2.0 (the "License");
00015  ** you may not use this file except in compliance with the License.
00016  ** You may obtain a copy of the License at
00017  ** http://www.apache.org/licenses/LICENSE-2.0
00018  ** Unless required by applicable law or agreed to in writing, software
00019  ** distributed under the License is distributed on an "AS IS" BASIS,
00020  ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00021  ** See the License for the specific language governing permissions and
00022  ** limitations under the License.
00023  *
00024  *********************************************************************************/
00025 
00026 #ifndef CLOSED_H
00027 #define CLOSED_H
00028 
00029 #include <math.h>
00030 #include "states.h"
00031 
00032 typedef STATE *HASH_TABLE;
00033 #define NO_STATE ~0
00034 
00035 #define free_hash_table(table) memfree(table)
00036 
00037 int hash_add(HASH_TABLE state_table, STATE *state);
00038 
00039 int hash_lookup(HASH_TABLE state_table, STATE *state);
00040 
00041 HASH_TABLE new_hash_table();
00042 
00043 #endif