You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to build a 3D bin packing model but did not find a good solution with OR-TOOLS. The requirements is:
Given a set of N 3D boxes, place them one-by-one into a fixed size container.
At each step of placing, a physical simulation engine needs to check the stability of current packed boxes. The simulation engine is third-part and can not be modified. It receives current packing configuration (i.e, x,y,z position of each item) and return a bool value indicating stability.
I have checked the bin packing example in OR-TOOLS. Current setting is different in that I need to check stability at each timestep, that is, placing two boxes on a seesaw simultaneously may satisfy the stability constraint but placing them one-by-one will not pass the stability check.
I have built a 3D bin packing model without considering stability and packing order with OR-TOOLS. However, from my understanding, the above requirements need sequential decision with custom third-part constraint. Is there any reference to build such a model in OR-TOOLS? Great thanks!
This discussion was converted from issue #3641 on January 18, 2023 06:12.
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I would like to build a 3D bin packing model but did not find a good solution with OR-TOOLS. The requirements is:
I have built a 3D bin packing model without considering stability and packing order with OR-TOOLS. However, from my understanding, the above requirements need sequential decision with custom third-part constraint. Is there any reference to build such a model in OR-TOOLS? Great thanks!
Beta Was this translation helpful? Give feedback.
All reactions