Results 3 issues of Jesse Myrberg

Ensure correct errors are thrown regarding problem size limitations before trying to solve it within Fortran

enhancement

For some reason, MTM is not always giving the global optimal solution - example code below: ```python import numpy as np from mknapsack import solve_multiple_knapsack weights = np.array([150609, 267741, 555412,...

bug

E.g. if the total weight is smaller than largest knapsack, provide a trivial solution instead of throwing an error.

enhancement