Re: ColdFusion to Generate Cutlists?

2007-10-31 Thread Jerry Johnson
I wrote one 20+ years ago in Autolisp and C. Wasn't easy, cost the government a ton of money, and don't have any of the source. On 10/30/07, Matthew Reinbold [EMAIL PROTECTED] wrote: It is a fairly common optimization problem and there are hints of other stuff being out there. For example,

ColdFusion to Generate Cutlists?

2007-10-30 Thread Matthew Reinbold
I've been working on this problem for some time and I'm about ready to throw in the towel. The client has a sheet of plywood and needs to have an application show the most efficient way to make a series of cuts (cutlist) so that waste is minimized. I know this problem has to have been solved

RE: ColdFusion to Generate Cutlists?

2007-10-30 Thread Adam Churvis
: Tuesday, October 30, 2007 2:12 PM To: CF-Talk Subject: ColdFusion to Generate Cutlists? I've been working on this problem for some time and I'm about ready to throw in the towel. The client has a sheet of plywood and needs to have an application show the most efficient way to make a series

Re: ColdFusion to Generate Cutlists?

2007-10-30 Thread Claude Schneegans
my Google searches are either turning up commercial products and there is a good reason: this is really a commercial application. These programs are parts of CAD/CAM systems. Who will ever program such a complicated algorithm just for fun if he has one sheet to cut once a year? And what

RE: ColdFusion to Generate Cutlists?

2007-10-30 Thread Dawson, Michael
PROTECTED] Sent: Tuesday, October 30, 2007 2:12 PM To: CF-Talk Subject: ColdFusion to Generate Cutlists? I've been working on this problem for some time and I'm about ready to throw in the towel. The client has a sheet of plywood and needs to have an application show the most efficient way to make a series

Re: ColdFusion to Generate Cutlists?

2007-10-30 Thread Matthew Reinbold
Who will ever program such a complicated algorithm just for fun if he has one sheet to cut once a year? And what would be the advantage vs. complexity to run such an application on the Web? Hi Claude, in response to your questions: The application is to be a web based for a number of cabinetry

Re: ColdFusion to Generate Cutlists?

2007-10-30 Thread Claude Schneegans
In response to an earlier comment, the sizes of the cuts are all rectangles Ah ok, in that case, the algorithm is going to be much simpler, otherwise I was wondering how the user could enter the shape of each piece by Internet. I'm affraid you'll have to write the code yourself, it's quite an

Re: ColdFusion to Generate Cutlists?

2007-10-30 Thread Matthew Reinbold
It is a fairly common optimization problem and there are hints of other stuff being out there. For example, there is an open source cutlist app written in Delphi that, if I had more patience, I would sit down and try and reverse engineer for CF. There also seems to be shadows of a ruby api(?)

Re: ColdFusion to Generate Cutlists?

2007-10-30 Thread James Holmes
That Ruby code is sitting right there in the thread at the link you provided. With CF8 and Sean Corfield's jRuby/CF stuff, you can probably run the Ruby within CF. On 10/31/07, Matthew Reinbold [EMAIL PROTECTED] wrote: It is a fairly common optimization problem and there are hints of other stuff