mirror of
https://github.com/postgres/postgres.git
synced 2025-06-27 23:21:58 +03:00
Other header files should never #include postgres.h (nor postgres_fe.h, nor c.h), per project policy. Also, there's no need for any backend .c file to explicitly include elog.h or palloc.h, because postgres.h pulls those in already. Extracted from a larger patch by Kyotaro Horiguchi. The rest of the removals he suggests require more study, but these are no-brainers. Discussion: https://postgr.es/m/20180215.200447.209320006.horiguchi.kyotaro@lab.ntt.co.jp
17 lines
333 B
C
17 lines
333 B
C
/*
|
|
* knapsack.h
|
|
*
|
|
* Copyright (c) 2017-2018, PostgreSQL Global Development Group
|
|
*
|
|
* src/include/lib/knapsack.h
|
|
*/
|
|
#ifndef KNAPSACK_H
|
|
#define KNAPSACK_H
|
|
|
|
#include "nodes/bitmapset.h"
|
|
|
|
extern Bitmapset *DiscreteKnapsack(int max_weight, int num_items,
|
|
int *item_weights, double *item_values);
|
|
|
|
#endif /* KNAPSACK_H */
|