Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 407 Bytes

readme.md

File metadata and controls

16 lines (14 loc) · 407 Bytes

Cutting Stock Problem (Column Generation)

列生成求解

Cutting Stock Problem parameter: roll_width: 17 demand_width_array: [3 6 7 8] demand_number_array: [25 20 18 10] result: minimal_stock: 25.0 cut_pattern: [[ 5. 0. 0. 0. 1. 1. 3. 1.] [ 0. 2. 0. 0. 2. -0. -0. 1.] [ 0. 0. 2. 0. -0. 2. 0. -0.] [ 0. 0. 0. 2. -0. -0. 1. 1.]] optimal_number: [ 1. -0. -0. -0. 5. 9. -0. 10.]