ortoolpy is a package for Operations Research. It is user's responsibility for the use of ortoolpy.
from ortoolpy import knapsack
size = [21, 11, 15, 9, 34, 25, 41, 52]
weight = [22, 12, 16, 10, 35, 26, 42, 53]
capacity = 100
knapsack(size, weight, capacity)
import ortoolpy.optimization
%typical_optimization
- Python 3, pandas, pulp, more-itertools
- This is a sample. So it may not be efficient.
- ortools_vrp using Google OR-Tools ( https://developers.google.com/optimization/ ).
$ pip install ortoolpy
- first release