00001 // Copyright (C) 2000, International Business Machines 00002 // Corporation and others. All Rights Reserved. 00003 #ifndef _BCP_ENUM_TM_H 00004 #define _BCP_ENUM_TM_H 00005 00006 //----------------------------------------------------------------------------- 00007 00008 enum BCP_tree_search_method { 00009 BCP_BestFirstSearch, 00010 BCP_BreadthFirstSearch, 00011 BCP_DepthFirstSearch, 00012 BCP_PreferredFirstSearch 00013 }; 00014 00015 //----------------------------------------------------------------------------- 00016 00019 enum BCP_node_start_result{ 00021 BCP_NodeStart_NoNode, 00023 BCP_NodeStart_Error, 00025 BCP_NodeStart_OK 00026 }; 00027 00028 #endif