math: Avoid unneeded extra allocations for fixed-size data structures.
[pspp] / src / math / trimmed-mean.c
index a687dd9b5fcffcd711ed983d0566edbb54847213..4840fd2d66e0375a6114e3585fc5795b9acf60d7 100644 (file)
@@ -33,10 +33,10 @@ acc (struct statistic *s, const struct ccase *cx UNUSED, double c, double cc, do
   struct trimmed_mean *tm = UP_CAST (s, struct trimmed_mean, parent.parent);
   struct order_stats *os = &tm->parent;
 
-  if ( cc > os->k[0].tc && cc <= os->k[1].tc)
+  if (cc > os->k[0].tc && cc <= os->k[1].tc)
     tm->sum += c * y;
 
-  if ( tm->cyk1p1 == SYSMIS && cc > os->k[0].tc)
+  if (tm->cyk1p1 == SYSMIS && cc > os->k[0].tc)
     tm->cyk1p1 = c * y;
 }
 
@@ -44,20 +44,18 @@ static void
 destroy (struct statistic *s)
 {
   struct trimmed_mean *tm = UP_CAST (s, struct trimmed_mean, parent.parent);
-  struct order_stats *os = &tm->parent;
-  free (os->k);
   free (tm);
 }
 
 struct trimmed_mean *
 trimmed_mean_create (double W, double tail)
 {
-  struct trimmed_mean *tm = xzalloc (sizeof (*tm));
+  struct trimmed_mean *tm = XZALLOC (struct trimmed_mean);
   struct order_stats *os = &tm->parent;
   struct statistic *stat = &os->parent;
 
   os->n_k = 2;
-  os->k = xcalloc (2, sizeof (*os->k));
+  os->k = tm->k;
 
   assert (tail >= 0);
   assert (tail <= 1);
@@ -88,6 +86,6 @@ trimmed_mean_calculate (const struct trimmed_mean *tm)
       (tm->w - os->k[1].cc - os->k[0].tc) * os->k[1].y_p1
      +
       tm->sum
-     )
+)
     / ((1.0 - tm->tail * 2) * tm->w);
 }