X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Flanguage%2Fstats%2Fchisquare.c;h=ed143824187593f984324bc39afeaf810c0080df;hb=2165f59ab9eee5272b4037e45477811627cae078;hp=158064dcf920b6f539017c57d2bb9203e2c90457;hpb=c41f14854e73ad44824b54933ae96eb52f781fc2;p=pspp diff --git a/src/language/stats/chisquare.c b/src/language/stats/chisquare.c index 158064dcf9..ed14382418 100644 --- a/src/language/stats/chisquare.c +++ b/src/language/stats/chisquare.c @@ -320,7 +320,9 @@ void chisquare_execute (const struct dataset *ds, struct casereader *input, enum mv_class exclude, - const struct npar_test *test) + const struct npar_test *test, + bool exact UNUSED, + double timer UNUSED) { const struct dictionary *dict = dataset_dict (ds); int v, i; @@ -344,7 +346,8 @@ chisquare_execute (const struct dataset *ds, struct hsh_table *freq_hash = NULL; struct casereader *reader = casereader_create_filter_missing (casereader_clone (input), - &ost->vars[v], 1, exclude, NULL); + &ost->vars[v], 1, exclude, + NULL, NULL); struct tab_table *freq_table = create_variable_frequency_table(dict, reader, cst, v, &freq_hash); @@ -414,7 +417,8 @@ chisquare_execute (const struct dataset *ds, double total_obs = 0.0; struct casereader *reader = casereader_create_filter_missing (casereader_clone (input), - &ost->vars[v], 1, exclude, NULL); + &ost->vars[v], 1, exclude, + NULL, NULL); struct hsh_table *freq_hash = create_freq_hash_with_range (dict, reader, ost->vars[v], cst->lo, cst->hi);