]> git.pond.sub.org Git - empserver/blob - src/lib/as/as_stats.c
cadc8dc4da438796ef48f4b99ff3fa7a245753d9
[empserver] / src / lib / as / as_stats.c
1 /*
2  *  A* Search - A search library used in Empire to determine paths between
3  *              objects.
4  *  Copyright (C) 1990-1998 Phil Lapsley
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include <config.h>
22
23 #include "as.h"
24
25 /*
26  * Print statistics on algorithm performance to the file pointer "fp".
27  */
28 void
29 as_stats(struct as_data *adp, FILE * fp)
30 {
31     int i;
32     int j;
33     int total_q;
34     int total_h;
35     struct as_queue *qp;
36     struct as_hash *hp;
37
38     fprintf(fp, "Statistics:\n");
39
40     fprintf(fp, "queue lengths:\n");
41     total_q = 0;
42     total_h = 0;
43     for (i = 0, qp = adp->head; qp; qp = qp->next)
44         i++;
45     fprintf(fp, "\tmain:\t%d\n", i);
46     total_q += i;
47     for (i = 0, qp = adp->tried; qp; qp = qp->next)
48         i++;
49     fprintf(fp, "\ttried:\t%d\n", i);
50     total_q += i;
51     for (i = 0, qp = adp->subsumed; qp; qp = qp->next)
52         i++;
53     fprintf(fp, "\tsubsumed:\t%d\n", i);
54     total_q += i;
55     fprintf(fp, "hash table statistics (size %d):\n", adp->hashsize);
56     for (i = 0; i < adp->hashsize; i++) {
57         for (j = 0, hp = adp->hashtab[i]; hp; hp = hp->next)
58             j++;
59         fprintf(fp, "\t%d\t%d\n", i, j);
60         total_h += j;
61     }
62     fprintf(fp, "\ttotal\t%d\n", total_h);
63     fprintf(fp, "approximate memory usage (bytes):\n");
64     fprintf(fp, "\tqueues\t%d\n",
65             (int)(total_q * sizeof(struct as_queue)));
66     fprintf(fp, "\tnodes\t%d\n", (int)(total_q * sizeof(struct as_node)));
67     fprintf(fp, "\thash ents\t%d\n",
68             (int)(total_h * sizeof(struct as_hash)));
69     fprintf(fp, "\ttotal\t%d\n",
70             (int)(total_q * sizeof(struct as_queue) +
71                   total_q * sizeof(struct as_node) +
72                   total_h * sizeof(struct as_hash)));
73 }