Fixed bug reporting the significance of paired value t-test.
[pspp-builds.git] / src / math / group.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation, either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
16
17 #include <config.h>
18 #include <stdlib.h>
19 #include <libpspp/compiler.h>
20 #include <libpspp/hash.h>
21 #include "group.h"
22 #include "group-proc.h"
23 #include <libpspp/str.h>
24 #include <data/variable.h>
25 #include <libpspp/misc.h>
26
27 #include "xalloc.h"
28
29 /* Return -1 if the id of a is less than b; +1 if greater than and
30    0 if equal */
31 int
32 compare_group (const struct group_statistics *a,
33                  const struct group_statistics *b,
34                  int width)
35 {
36   return compare_values(&a->id, &b->id, width);
37 }
38
39
40
41 unsigned
42 hash_group (const struct group_statistics *g, int width)
43 {
44   unsigned id_hash;
45
46   id_hash = hash_value(&g->id, width);
47
48   return id_hash;
49 }
50
51
52 void
53 free_group (struct group_statistics *v, void *aux UNUSED)
54 {
55   free(v);
56 }
57
58
59 struct group_proc *
60 group_proc_get (const struct variable *v)
61 {
62   /* This is not ideal, obviously. */
63   struct group_proc *group = var_get_aux (v);
64   if (group == NULL)
65     {
66       group = xmalloc (sizeof (struct group_proc));
67       var_attach_aux (v, group, var_dtor_free);
68     }
69   return group;
70 }