X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fcategory.c;h=3aaf5c552cd903897566eb869aa97b0c95e06f2d;hb=124dea11f9542304e35bef92b7f3a46d5afca4d7;hp=7190418c266f2d31083f12bb3717f4a61b370155;hpb=46dfa3ec7417bbb7452f152a6b62435006259633;p=pspp-builds.git diff --git a/src/data/category.c b/src/data/category.c index 7190418c..3aaf5c55 100644 --- a/src/data/category.c +++ b/src/data/category.c @@ -31,16 +31,14 @@ #include #include +#include +#include +#include +#include +#include #include #include -#include -#include "category.h" -#include "value.h" -#include "variable.h" - -#include "xalloc.h" - #define CAT_VALUE_NOT_FOUND -1 #define N_INITIAL_CATEGORIES 1 @@ -108,7 +106,7 @@ cat_value_find (const struct variable *v, const union value *val) { candidate = obs_vals->vals + i; assert (candidate != NULL); - if (!compare_values (candidate, val, v)) + if (!compare_values_short (candidate, val, v)) { return i; } @@ -182,3 +180,20 @@ cat_get_n_categories (const struct variable *v) return var_get_obs_vals (v)->n_categories; } +/* + If VAR is categorical with d categories, its first category should + correspond to the origin in d-dimensional Euclidean space. + */ +bool +cat_is_origin (const struct variable *var, const union value *val) +{ + if (var_is_numeric (var)) + { + return false; + } + if (cat_value_find (var, val) == 0) + { + return true; + } + return false; +}