struct ll *curkey;
unsigned long distance, loop;
- printf("In findmaxpath\n");
distance = 0;
from = to = tmp = NULL;
- hash_getkeysigs(0x5B430367);
+ hash_getkeysigs(0xF1BD4BE45B430367);
for (loop = 0; (loop < HASHSIZE) && (distance < max); loop++) {
curkey = gethashtableentry(loop);
from->keyid,
to->keyid,
distance);
+ dofindpath(to->keyid, from->keyid, false);
}
int main(int argc, char *argv[])
findmaxpath(30);
printf("--------\n");
findmaxpath(30);
+ destroyhash();
cleanupdb();
return EXIT_SUCCESS;