2
0

knapsack.h 339 B

12345678910111213141516
  1. /*
  2. * knapsack.h
  3. *
  4. * Copyright (c) 2017-2022, PostgreSQL Global Development Group
  5. *
  6. * src/include/lib/knapsack.h
  7. */
  8. #ifndef KNAPSACK_H
  9. #define KNAPSACK_H
  10. #include "nodes/bitmapset.h"
  11. extern Bitmapset *DiscreteKnapsack(int max_weight, int num_items,
  12. int *item_weights, double *item_values);
  13. #endif /* KNAPSACK_H */