X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fgroup.h;h=954418a872af25dadb99378c227d31e19759afb5;hb=b2f22a54346df45ab24d83e1228700649f62d63c;hp=a195f06a8729b3ea14d94f2160bdd5d31aa0ee2b;hpb=e976a0fa28771a625ba29b86cc5883838d0f1c70;p=pspp diff --git a/src/group.h b/src/group.h index a195f06a87..954418a872 100644 --- a/src/group.h +++ b/src/group.h @@ -18,7 +18,6 @@ 02111-1307, USA. */ - #ifndef GROUP_H #define GROUP_H @@ -26,27 +25,12 @@ #include "val.h" -enum comparison - { - CMP_LE = -2, - CMP_LT = -1, - CMP_EQ = 0, - CMP_GT = 1, - CMP_GE = 2 - }; - - /* Statistics for grouped data */ struct group_statistics { /* The value of the independent variable for this group */ union value id; - /* The criterium matching for comparing with id - (applicable only to T-TEST) FIXME: therefore it shouldn't be here - */ - enum comparison criterion; - /* The arithmetic mean */ double mean; @@ -90,7 +74,7 @@ struct group_statistics -/* These funcs are usefull for hash tables */ +/* These funcs are useful for hash tables */ /* Return -1 if the id of a is less than b; +1 if greater than and 0 if equal */