X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fstats%2Fbinomial.c;h=3287509c982c3398dcee96a0e17eea4ea21b929d;hb=27efd5d4d3b65514a11ae4d5afacafbf70373310;hp=3c8925803bfd5741623120e21c412ab8caa35d2e;hpb=dfd1972f7bcb550a4fc3b05dbe7e71d12334b0a7;p=pspp diff --git a/src/language/stats/binomial.c b/src/language/stats/binomial.c index 3c8925803b..3287509c98 100644 --- a/src/language/stats/binomial.c +++ b/src/language/stats/binomial.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2006, 2009 Free Software Foundation, Inc. + Copyright (C) 2006, 2009, 2010 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 @@ -45,8 +45,6 @@ #include -#include - static double calculate_binomial_internal (double n1, double n2, double p); @@ -91,8 +89,8 @@ static bool do_binomial (const struct dictionary *dict, struct casereader *input, const struct binomial_test *bst, - struct freq_mutable *cat1, - struct freq_mutable *cat2, + struct freq *cat1, + struct freq *cat2, enum mv_class exclude ) { @@ -160,7 +158,7 @@ binomial_execute (const struct dataset *ds, const struct binomial_test *bst = (const struct binomial_test *) test; const struct one_sample_test *ost = (const struct one_sample_test*) test; - struct freq_mutable *cat[2]; + struct freq *cat[2]; int i; assert ((bst->category1 == SYSMIS) == (bst->category2 == SYSMIS) || bst->cutpoint != SYSMIS);