Delete trailing whitespace at end of lines.
[pspp-builds.git] / src / math / group.h
index 43714d9c05281c6eaaf3750eabc5dff334929e77..6d4691e7b74f003ab2079e589c0797d3f1acd410 100644 (file)
@@ -1,6 +1,5 @@
 /* PSPP - computes sample statistics.
    Copyright (C) 2004 Free Software Foundation, Inc.
-   Written by John Darrington <john@darrington.wattle.id.au>
 
    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License as
@@ -22,7 +21,7 @@
 #define GROUP_H
 
 
-#include "value.h"
+#include <data/value.h>
 
 
 /* Statistics for grouped data */
@@ -39,7 +38,7 @@ struct group_statistics
 
     /* Sample std. deviation */
     double s_std_dev;
-    
+
     /* count */
     double n;
 
@@ -59,13 +58,13 @@ struct group_statistics
 
     /* Running total of the Levene for this group */
     double lz_total;
-    
+
     /* Group mean of Levene */
-    double lz_mean; 
+    double lz_mean;
 
 
     /* min and max values */
-    double minimum ; 
+    double minimum ;
     double maximum ;
 
 
@@ -76,10 +75,10 @@ struct group_statistics
 
 /* These funcs are useful for hash tables */
 
-/* Return -1 if the id of a is less than b; +1 if greater than and 
+/* Return -1 if the id of a is less than b; +1 if greater than and
    0 if equal */
-int  compare_group(const struct group_statistics *a, 
-                  const struct group_statistics *b, 
+int  compare_group(const struct group_statistics *a,
+                  const struct group_statistics *b,
                   int width);
 
 unsigned hash_group(const struct group_statistics *g, int width);