bin-packing

Solving task scheduling or bin-packing optimizations in R

本小妞迷上赌 提交于 2019-11-30 04:26:48
问题 I have an optimisation issue. It's about a product that contains 20 parts (the order of producing doesn't matter). I've got 3 similar machine that can produce all 20 parts. I've got the 20 parts represented in minutes (ie. it takes 3min to produce the first part and 75min to produce the second part, etc) ItemTime<-c(3,75,55,12,45,55,11,8,21,16,65,28,84,3,58,46,5,84,8,48) So to produce 1 product it takes 730 min. sum(ItemTime) The aim is to minimise the production of one product by allocating

Where can I find open source 2d bin packing algorithms? [closed]

僤鯓⒐⒋嵵緔 提交于 2019-11-29 14:13:45
问题 I'm looking for open source (preferably c++) algorithms for 2d bin packing of rectangular and or irregular shapes. I've found several papers on the subject but no code. 回答1: Here is the best to my knowledge about rectangular bin packing: http://clb.demon.fi/projects/rectangle-bin-packing 来源: https://stackoverflow.com/questions/143580/where-can-i-find-open-source-2d-bin-packing-algorithms

3d bin packing algorithm

本小妞迷上赌 提交于 2019-11-28 18:57:51
I am looking for a deterministic implementation for any 3d bin packing algorithm, i.e. for packing many small and different cuboids inside one or many bigger ones. The solution could vary from the optimal one. It should be written in C, C++, Java, C#, IronPython, IronRuby or any other language an can bin to from .Net code. I found this C algorithm http://www.diku.dk/hjemmesider/ansatte/pisinger/3dbpp.c , but it doesn’t rotate the cuboids to find the best fit. I am ok with not rotating them upside down, but horizontal rotation should be possible. I have written an approximate algorithm for the

How is 2D bin packing achieved programmatically?

这一生的挚爱 提交于 2019-11-28 03:20:06
There are a few similar questions on stackoverflow, but none of them seem to provide a tangible answer that someone without a solid understanding of NP-hard problems and algorithms can understand. How does one perform 2D bin packing of rectangular objects? In my case, I'm trying to assemble several images into a single image, for use as a spritesheet, using the smallest amount of space. Each image possibly has wildly different bounds, but there is no set bounds to the container. I was hoping someone with an understanding of bin packing algorithms could explain how this can be achieved

3 dimensional bin packing algorithms

萝らか妹 提交于 2019-11-27 17:20:59
I'm faced with a 3 dimensional bin packing problem and am currently conducting some preliminary research as to which algorithms/heuristics are currently yielding the best results. Since the problem is NP hard I do not expect to find the optimal solution in every case, but I was wondering: 1) what are the best exact solvers? Branch and Bound? What problem instance sizes can I expect to solve with reasonable computing resources? 2) what are the best heuristic solvers? 3) What off-the-shelf solutions exist to conduct some experiments with? As far as off the shelf solutions, check out MAXLOADPRO

3d bin packing algorithm

孤街浪徒 提交于 2019-11-27 12:03:09
问题 I am looking for a deterministic implementation for any 3d bin packing algorithm, i.e. for packing many small and different cuboids inside one or many bigger ones. The solution could vary from the optimal one. It should be written in C, C++, Java, C#, IronPython, IronRuby or any other language an can bin to from .Net code. I found this C algorithm http://www.diku.dk/hjemmesider/ansatte/pisinger/3dbpp.c , but it doesn’t rotate the cuboids to find the best fit. I am ok with not rotating them

An approach to implement rectangular bin packing

孤街醉人 提交于 2019-11-27 06:22:58
问题 I'm trying to implement 2D bin packing using the Maximal rectangles algorithms as in the following paper. http://clb.demon.fi/files/RectangleBinPack.pdf In order to implement this, what type of a data structure will be most appropriate? After googling I found there are different implementation of Guillotine packing algorithm using trees. Can the same approach be applied to this as well. The algorithm itself is not much clear to me. Can I have more clarification on this as well. 回答1: I

3 dimensional bin packing algorithms

↘锁芯ラ 提交于 2019-11-26 22:32:43
问题 I'm faced with a 3 dimensional bin packing problem and am currently conducting some preliminary research as to which algorithms/heuristics are currently yielding the best results. Since the problem is NP hard I do not expect to find the optimal solution in every case, but I was wondering: 1) what are the best exact solvers? Branch and Bound? What problem instance sizes can I expect to solve with reasonable computing resources? 2) what are the best heuristic solvers? 3) What off-the-shelf

How is 2D bin packing achieved programmatically?

我们两清 提交于 2019-11-26 15:18:48
问题 There are a few similar questions on stackoverflow, but none of them seem to provide a tangible answer that someone without a solid understanding of NP-hard problems and algorithms can understand. How does one perform 2D bin packing of rectangular objects? In my case, I'm trying to assemble several images into a single image, for use as a spritesheet, using the smallest amount of space. Each image possibly has wildly different bounds, but there is no set bounds to the container. I was hoping