added automake.mk files in src/language
[pspp] / src / group.h
index a195f06a8729b3ea14d94f2160bdd5d31aa0ee2b..a066348646b2cd6f74633c6280d9eb93f8db592a 100644 (file)
@@ -14,9 +14,8 @@
 
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
-   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-   02111-1307, USA. */
-
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+   02110-1301, USA. */
 
 
 #ifndef GROUP_H
 #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 */