diff options
Diffstat (limited to 'src/filter.h')
-rw-r--r-- | src/filter.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/filter.h b/src/filter.h index dec13fd72..33c55b162 100644 --- a/src/filter.h +++ b/src/filter.h @@ -27,6 +27,7 @@ struct metric { char *func_name; metric_cons_func func; double required_score; + struct classifier *classifier; }; struct metric_result { @@ -37,7 +38,7 @@ struct metric_result { int process_filters (struct worker_task *task); void process_statfiles (struct worker_task *task); -void insert_result (struct worker_task *task, const char *metric_name, const char *symbol, u_char flag); +void insert_result (struct worker_task *task, const char *metric_name, const char *symbol, double flag); void make_composites (struct worker_task *task); double factor_consolidation_func (struct worker_task *task, const char *metric_name); |