modified: makefile
[GalaxyCodeBases.git] / BGI / SOAPdenovo2 / standardPregraph / inc / dfib.h
blobd0ad90a3c0682d4ba08ca53746a04842bcfe5b4c
1 /*
2 * inc/dfib.h
4 * This file is part of SOAPdenovo.
6 */
8 /*-
9 * Copyright 1997, 1998-2003 John-Mark Gurney.
10 * All rights reserved.
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
21 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
33 * $Id: dfib.h,v 1.8 2007/04/24 12:16:41 zerbino Exp $
37 #ifndef _DFIB_H_
38 #define _DFIB_H_
40 #include <stdio.h>
41 #include "def2.h" //#include "globals.h"
43 /* functions for key heaps */
44 DFibHeap * dfh_makekeyheap ( void );
45 DFibHeapNode * dfh_insertkey ( DFibHeap *, Time, unsigned int );
46 Time dfh_replacekey ( DFibHeap *, DFibHeapNode *, Time );
47 unsigned int dfh_replacekeydata ( DFibHeap *, DFibHeapNode *, Time, unsigned int );
49 unsigned int dfh_extractmin ( DFibHeap * );
50 unsigned int dfh_replacedata ( DFibHeapNode *, unsigned int );
51 unsigned int dfh_delete ( DFibHeap *, DFibHeapNode * );
52 void dfh_deleteheap ( DFibHeap * );
54 // DEBUG
55 IDnum dfibheap_getSize ( DFibHeap * );
56 Time dfibheap_el_getKey ( DFibHeapNode * );
57 // END DEBUG
59 #endif /* _FIB_H_ */