X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fxforms%2Fsample.c;h=dafaecee646a84176385396e2b1c90d192d4637b;hb=bc02bc027697df3207f827de722c26d8cc87e824;hp=0635caa9310c6094d86aca8164e2e3fc539acb5c;hpb=dcf9b154cbcaa35c3d8459a201b77eec8bcb30bd;p=pspp diff --git a/src/language/xforms/sample.c b/src/language/xforms/sample.c index 0635caa931..dafaecee64 100644 --- a/src/language/xforms/sample.c +++ b/src/language/xforms/sample.c @@ -1,6 +1,5 @@ /* PSPP - computes sample statistics. Copyright (C) 1997-9, 2000 Free Software Foundation, Inc. - Written by Ben Pfaff . This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -18,23 +17,25 @@ 02110-1301, USA. */ #include + #include #include #include #include -#include "alloc.h" -#include "command.h" -#include "message.h" -#include "lexer.h" -#include "random.h" -#include "str.h" -#include "variable.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include #include "gettext.h" #define _(msgid) gettext (msgid) -#include "debug-print.h" - /* The two different types of samples. */ enum { @@ -55,7 +56,7 @@ static trns_proc_func sample_trns_proc; static trns_free_func sample_trns_free; int -cmd_sample (void) +cmd_sample (struct lexer *lexer, struct dataset *ds) { struct sample_trns *trns; @@ -63,34 +64,34 @@ cmd_sample (void) int a, b; unsigned frac; - if (!lex_force_num ()) + if (!lex_force_num (lexer)) return CMD_FAILURE; - if (!lex_is_integer ()) + if (!lex_is_integer (lexer)) { unsigned long min = gsl_rng_min (get_rng ()); unsigned long max = gsl_rng_max (get_rng ()); type = TYPE_FRACTION; - if (tokval <= 0 || tokval >= 1) + if (lex_tokval (lexer) <= 0 || lex_tokval (lexer) >= 1) { msg (SE, _("The sampling factor must be between 0 and 1 " "exclusive.")); return CMD_FAILURE; } - frac = tokval * (max - min) + min; + frac = lex_tokval (lexer) * (max - min) + min; a = b = 0; } else { type = TYPE_A_FROM_B; - a = lex_integer (); - lex_get (); - if (!lex_force_match_id ("FROM")) + a = lex_integer (lexer); + lex_get (lexer); + if (!lex_force_match_id (lexer, "FROM")) return CMD_FAILURE; - if (!lex_force_int ()) + if (!lex_force_int (lexer)) return CMD_FAILURE; - b = lex_integer (); + b = lex_integer (lexer); if (a >= b) { msg (SE, _("Cannot sample %d observations from a population of " @@ -101,7 +102,7 @@ cmd_sample (void) frac = 0; } - lex_get (); + lex_get (lexer); trns = xmalloc (sizeof *trns); trns->type = type; @@ -109,15 +110,15 @@ cmd_sample (void) trns->N = b; trns->m = trns->t = 0; trns->frac = frac; - add_transformation (sample_trns_proc, sample_trns_free, trns); + add_transformation (ds, sample_trns_proc, sample_trns_free, trns); - return lex_end_of_command (); + return lex_end_of_command (lexer); } /* Executes a SAMPLE transformation. */ static int sample_trns_proc (void *t_, struct ccase *c UNUSED, - int case_num UNUSED) + casenumber case_num UNUSED) { struct sample_trns *t = t_; double U;