X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Fmerge.c;h=4fc7c8dcf21433a7c23692c275a0ed398c850789;hb=b734a970ee8bfda57e72398d4f424fb16f2ea80a;hp=59536da648d8a66be1955a5f27f4880c503111c3;hpb=f5c108becd49d78f4898cab11352291f5689d24e;p=pspp diff --git a/src/math/merge.c b/src/math/merge.c index 59536da648..4fc7c8dcf2 100644 --- a/src/math/merge.c +++ b/src/math/merge.c @@ -1,20 +1,18 @@ -/* PSPP - computes sample statistics. +/* PSPP - a program for statistical analysis. Copyright (C) 2007 Free Software Foundation, Inc. - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. 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., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ + along with this program. If not, see . */ /* FIXME: error checking. */ /* FIXME: merge pattern should be improved, this one causes a @@ -46,16 +44,18 @@ struct merge struct case_ordering *ordering; struct merge_input inputs[MAX_MERGE_ORDER]; size_t input_cnt; + size_t value_cnt; }; static void do_merge (struct merge *m); struct merge * -merge_create (const struct case_ordering *ordering) +merge_create (const struct case_ordering *ordering, size_t value_cnt) { struct merge *m = xmalloc (sizeof *m); m->ordering = case_ordering_clone (ordering); m->input_cnt = 0; + m->value_cnt = value_cnt; return m; } @@ -97,8 +97,7 @@ merge_make_reader (struct merge *m) } else if (m->input_cnt == 0) { - size_t value_cnt = case_ordering_get_value_cnt (m->ordering); - struct casewriter *writer = mem_writer_create (value_cnt); + struct casewriter *writer = mem_writer_create (m->value_cnt); r = casewriter_make_reader (writer); } else @@ -131,7 +130,7 @@ do_merge (struct merge *m) assert (m->input_cnt > 1); - w = tmpfile_writer_create (case_ordering_get_value_cnt (m->ordering)); + w = tmpfile_writer_create (m->value_cnt); for (i = 0; i < m->input_cnt; i++) taint_propagate (casereader_get_taint (m->inputs[i].reader), casewriter_get_taint (w));