X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fsample.c;h=fceadbbbf37e72a9ef0b0846419407e41e227115;hb=6950df40513e606e6be42fa83a36a281f654d553;hp=ce5d18d8131de8a12e0fc5de27f5508356ec0e59;hpb=bc963dae9be291ea0a7cccf189d13e00d3797cfd;p=pspp-builds.git diff --git a/src/sample.c b/src/sample.c index ce5d18d8..fceadbbb 100644 --- a/src/sample.c +++ b/src/sample.c @@ -14,10 +14,11 @@ 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., 59 Temple Place - Suite 330, Boston, MA - 02111-1307, USA. */ + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. */ #include +#include #include #include #include @@ -25,10 +26,13 @@ #include "command.h" #include "error.h" #include "lexer.h" -#include "random.h" +#include "settings.h" #include "str.h" #include "var.h" +#include "gettext.h" +#define _(msgid) gettext (msgid) + #include "debug-print.h" /* The two different types of samples. */ @@ -41,7 +45,6 @@ enum /* SAMPLE transformation. */ struct sample_trns { - struct trns_header h; int type; /* One of TYPE_*. */ int n, N; /* TYPE_A_FROM_B: n from N. */ int m, t; /* TYPE_A_FROM_B: # picked so far; # so far. */ @@ -49,6 +52,7 @@ struct sample_trns }; static trns_proc_func sample_trns_proc; +static trns_free_func sample_trns_free; int cmd_sample (void) @@ -59,12 +63,13 @@ cmd_sample (void) int a, b; unsigned frac; - lex_match_id ("SAMPLE"); - if (!lex_force_num ()) return CMD_FAILURE; - if (!lex_integer_p ()) + if (!lex_is_integer ()) { + unsigned long min = gsl_rng_min (get_rng ()); + unsigned long max = gsl_rng_max (get_rng ()); + type = TYPE_FRACTION; if (tokval <= 0 || tokval >= 1) { @@ -73,7 +78,7 @@ cmd_sample (void) return CMD_FAILURE; } - frac = tokval * UINT_MAX; + frac = tokval * (max - min) + min; a = b = 0; } else @@ -98,36 +103,28 @@ cmd_sample (void) } lex_get (); -#if DEBUGGING - if (type == TYPE_FRACTION) - printf ("SAMPLE %g.\n", frac / (double) UINT_MAX); - else - printf ("SAMPLE %d FROM %d.\n", a, b); -#endif - trns = xmalloc (sizeof *trns); - trns->h.proc = sample_trns_proc; - trns->h.free = NULL; trns->type = type; trns->n = a; trns->N = b; trns->m = trns->t = 0; trns->frac = frac; - add_transformation ((struct trns_header *) trns); + add_transformation (sample_trns_proc, sample_trns_free, trns); return lex_end_of_command (); } +/* Executes a SAMPLE transformation. */ static int -sample_trns_proc (struct trns_header * trns, struct ccase *c UNUSED, +sample_trns_proc (void *t_, struct ccase *c UNUSED, int case_num UNUSED) { - struct sample_trns *t = (struct sample_trns *) trns; + struct sample_trns *t = t_; double U; if (t->type == TYPE_FRACTION) { - if (rng_get_unsigned (pspp_rng ()) <= t->frac) + if (gsl_rng_get (get_rng ()) <= t->frac) return -1; else return -2; @@ -136,7 +133,7 @@ sample_trns_proc (struct trns_header * trns, struct ccase *c UNUSED, if (t->m >= t->n) return -2; - U = rng_get_double (pspp_rng ()); + U = gsl_rng_uniform (get_rng ()); if ((t->N - t->t) * U >= t->n - t->m) { t->t++; @@ -149,3 +146,10 @@ sample_trns_proc (struct trns_header * trns, struct ccase *c UNUSED, return -1; } } + +static void +sample_trns_free (void *t_) +{ + struct sample_trns *t = t_; + free (t); +}