00001 /********************************************************************** 00002 * 00003 * Filename : PackDef.h 00004 * Author : Chen Li Wen 00005 * 00006 * Version : 1.0a 00007 * Date : June 6, 1998 00008 * 00009 * Description : Interface file for class def, including definitions 00010 * for some useful things. 00011 * 00012 * Reference : nil 00013 * 00014 * Notes : nil 00015 * 00016 * Changes : nil 00017 * 00018 * Copyright : Copyright (c) 1998 00019 * All rights reserved by 00020 * Resource Allocation and Scheduling Group 00021 * Department of Information Systems and Computer Science 00022 * National University of Singapore 00023 * 00024 **********************************************************************/ 00025 00026 00027 #ifndef __PACKDEF_H__ 00028 #define __PACKDEF_H__ 00029 00030 00031 #include <LEDA/core/set.h> 00032 #include <LEDA/graph/graph.h> 00033 00034 00035 // Constant definition 00036 const int MAX_SECT_NUM = 5; 00037 00038 00039 // Boolean type definition 00040 enum Bool 00041 { 00042 FALSE, 00043 TRUE 00044 }; 00045 00046 00047 #endif