X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fcasegrouper.h;h=f367d23cdb2b23af870be7f35276b4e3b6b0f66b;hb=63c7521729b947ace9e192dff9330813ecfb5812;hp=e0a0e487d059f956bbfb1085c4dac12077b132b8;hpb=e49bb94c97b852448da96c340802048011ee2ace;p=pspp diff --git a/src/data/casegrouper.h b/src/data/casegrouper.h index e0a0e487d0..f367d23cdb 100644 --- a/src/data/casegrouper.h +++ b/src/data/casegrouper.h @@ -1,20 +1,25 @@ -/* 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 . */ + +/* Casegrouper. + + Breaks up the cases from a casereader into sets of contiguous + cases based on some criteria, e.g. sets of cases that all have + the same values for some subset of variables. Each set of + cases is made available to the client as a casereader. */ #ifndef DATA_CASEGROUPER_H #define DATA_CASEGROUPER_H 1 @@ -22,10 +27,10 @@ #include #include -struct case_ordering; struct casereader; struct ccase; struct dictionary; +struct subcase; struct variable; struct casegrouper * @@ -36,12 +41,12 @@ casegrouper_create_func (struct casereader *, void (*destroy) (void *aux), void *aux); struct casegrouper *casegrouper_create_vars (struct casereader *, - struct variable *const *vars, + const struct variable *const *vars, size_t var_cnt); struct casegrouper *casegrouper_create_splits (struct casereader *, const struct dictionary *); -struct casegrouper *casegrouper_create_case_ordering (struct casereader *, - const struct case_ordering *); +struct casegrouper *casegrouper_create_subcase (struct casereader *, + const struct subcase *); bool casegrouper_get_next_group (struct casegrouper *, struct casereader **); bool casegrouper_destroy (struct casegrouper *);