mirror of
https://github.com/postgres/postgres.git
synced 2026-01-27 21:43:08 +03:00
Reported-by: Michael Paquier Discussion: https://postgr.es/m/ZZKTDPxBBMt3C0J9@paquier.xyz Backpatch-through: 12
17 lines
339 B
C
17 lines
339 B
C
/*
|
|
* knapsack.h
|
|
*
|
|
* Copyright (c) 2017-2024, 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 */
|