About 3,350,000 results
Open links in new tab
  1. Calculating a cutting list with the least amount of off cut waste

    Jul 3, 2012 · The smaller lengths need to be cut in the order that produces the least amount of off cut waste from the 5m lengths of aluminium extrusions. Currently I order the cutting list in such a way …

  2. optimization - Cut optimisation algorithm - Stack Overflow

    Me and some of my friends at college were assigned a practical task of developing a net application for optimization of cutting rectangular parts from some kind of material. Something like apps in ...

  3. Cutting Algorithm in Excel VBA to minimise wastage when ordering ...

    I am working on an excel spreadsheet to minimise wastage when ordering cables. I am currently working in excel VBA. The Cable details look like the image below where the Cable ID is the unique …

  4. Algorithm for pipe cutting optimization - Stack Overflow

    May 28, 2014 · I've bee presented with the problem of finding an algorithm to optimize the cutting of a length of pipe into smaller, different lengths. For example, you have standard pipes of 10 meters and …

  5. Need to summarize and count a group of common records in SQL Server

    May 6, 2016 · 0 Basically, I have a cut optimizer that outputs a list of "cuts" by "extrusion" and "cut length". My main goal is to cut this down to a summarized cut sheet. Below is a few lines for show, …

  6. Resolving deprecation warnings of Qiskit's `QuantumInstance`

    May 31, 2023 · The Max-Cut problem is a well-known problem in computer science and combinatorial optimization, which seeks to divide the vertices of a graph into two disjoint sets such that the number …

  7. 1-dimensional nesting algorithm - Stack Overflow

    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

  8. Effective way to zoom the camera very close to 3D shapes?

    Oct 17, 2022 · I think I'm going to have to let my code speak for itself here. I am creating a map to plot GPS coordinates. I've decided to plot these onto a 3D globe. I've decided to try javafx and I'm using …

  9. AssertionError - when trying to implement new optimizer

    Jul 10, 2021 · 1 I am trying to implement new optimizer for my model from pytorch-optimizer github but when i use i am getting assertion error. i dont know where i am doing wrong error:

  10. Optimized method of cutting/slicing sorted lists - Stack Overflow

    if a[i] <= cut: break b = a[i+1:] print "Cut list: %s" % b which would be fairly quick method if the index to cut from is close to the end of the list, but which will be inefficient if the item is close to the beginning …