| Description: | Given a set of numbers, this program will solve for all subsets whose elements add up to a given number n, and (optionally) whose sizes are between kmin and kmax. These subsets are commonly called partitions of n. A more detailed explanation along with the source code can be found on the QiGuang.NET Wiki. |
| Step 1: | Enter the set of numbers to choose from. |
| Step 2: | Specify the number that the partitions should add up to. |
| Step 3: | (Optionally) specify the minimum and maximum size of the partitions. |