00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifdef __cplusplus
00018 extern "C" {
00019 #endif
00020
00021
00022
00023 #ifndef HEAP_H
00024 #define HEAP_H
00025
00026 #include "hedges.h"
00027
00028 extern void PQinitialize(void);
00029 extern void PQcleanup(void);
00030 extern Halfedge *PQextractmin(void);
00031 extern Point PQ_min(void);
00032 extern int PQempty(void);
00033 extern void PQdelete(Halfedge *);
00034 extern void PQinsert(Halfedge *, Site *, double);
00035
00036 #endif
00037
00038 #ifdef __cplusplus
00039 }
00040 #endif