What is an effective algorithm for nesting 1 dimensional lengths into predefined stock lengths?
For example, If you required steel bars in the following quantities and lengths,
- 5 x 2 metres
- 5 x 3 metres
- 5 x 4 metres
and these can be cut from 10 metre bars. How could you calculate the pattern for cutting the 10m bars so that the minimum number of bars are used?
In addition, how could you incorporate multiple stock lengths into the algorithm?
I've had a bit of time to work on this so I'm going to write up how I solved it. I hope this will be useful to someone.I'm not sure if it is ok to answer my own question like this. A moderator can change this to an answer if that is more appropriate.
First thanks to everyone that answered. This pointed me to the appropriate algorithm; the cutting stock problem.
This post was also useful; "Calculating a cutting list with the least amount of off cut waste".
Ok, on to the solution.
I'll use the following terminology in my solution;
- Stock: a length of material that will be cut into smaller pieces
- Cut: a length of material that has been cut from stock. multiple cuts may be taken from the same piece of stock
- Waste: the length of material that is left in a piece of stock after all cuts have been made.
There are three main stages to solving the problem,
- Identify all possible cut combinations
- Identify which combinations can be taken from each piece of stock
- Find the optimal mix of cut combinations.
Step 1
With N cuts, there are 2^N-1 unique cut combinations. These combinations can be represented as a binary truth table.
Where A,B,C are unique cuts;
A B C | Combination
-------------------
0 0 0 | None
0 0 1 | C
0 1 0 | B
0 1 1 | BC
1 0 0 | A
1 0 1 | AC
1 1 0 | AB
1 1 1 | ABC
A for-loop with some bitwise operators can be used to quickly create groupings of each cut combination.
This can get quite time consuming for large values of N.
In my situation there were multiple instances of the same cut. This produced duplicate combinations.
A B B | Combination
-------------------
0 0 0 | None
0 0 1 | B
0 1 0 | B (same as previous)
0 1 1 | BB
1 0 0 | A
1 0 1 | AB
1 1 0 | AB (same as previous)
1 1 1 | ABB
I was able to exploit this redundancy to reduce the time to calculate the combinations. I grouped the duplicate cuts together and calculated the unique combinations of this group. I then appended this list of combinations to each unique combination in a second group to create a new group.
For example, with cuts AABBC, the process is as follows.
A A | Combination
-------------------
0 1 | A
1 1 | AA
Call this group X.
Append X to unique instances of B,
B B X | Combination
-------------------
0 0 1 | A
| AA
0 1 0 | B
0 1 1 | BA
| BAA
1 1 0 | BB
1 1 1 | BBA
| BBAA
Call this group Y.
Append Y to unique instances of C,
C Y | Combination
-----------------
0 1 | A
| AA
| B
| BA
| BAA
| BB
| BBA
| BBAA
1 0 | C
1 1 | CA
| CAA
| CB
| CBA
| CBAA
| CBB
| CBBA
| CBBAA
This example produces 17 unique combinations instead of 31 (2^5-1). A saving of almost half.
Once all combinations are identified it is time to check how this fits into the stock.
Step 2
The aim of this step is to map the cut combinations identified in step 1 to the available
