addht - create an hash table
This software belongs to the ALLIANCE CAD system from the CAO-VLSI team at
ASIM/LIP6/UPMC laboratory.
LIP6/ASIM
University P. et M. Curie
4, place Jussieu
75252 PARIS Cedex 05
FRANCE
Fax : {33/0} 1.44.27.62.86
E-mail support : alliance-support@asim.lip6.fr
#include mut315.h"
ht *addht(len)
unsigned int len;
addht() creates a new hash table in memory. len is an estimate of the maximum number of entries that the table will contain. This number may be automatically adjusted when using access functions by a dynamic reallocation, in order to warranty fast access time.
#include mut315.h"
ht *sigHtable(ptfig)
/* h table suitable for signals */
lofig_list *ptfig;
{
losig_list *ptsig = ptfig->LOSIG;
unsigned int i = 0;
while (ptsig) {
i++;
ptsig = ptsig->NEXT;
}
return addht(i);
}
*** mbk error *** illegal addht : len is `0'" The hash table size cannot be zero, guess why!
mbk(1) , delht(3) , addhtitem(3) , gethtitem(3) , sethtitem(3) , delhtitem(3) , viewht(3) .
This tool is under development at the ASIM/LIP6/UPMC laboratory, cao-vlsi
research team.
We need your feedbak to improve documentation and tools.
If you find bugs, please fill-in the form at
http://asim.lip6.fr/alliance/support/bug-report/
Thanks for doing this.