1 / 23

Car Sequencing Problem

Car Sequencing Problem. An update. How to certify output. Standard output. The Certificate class. Easy Problems. We have a directory of easy problems. How were these made?. Why do we need easy problems?. Heuristics. Variable ordering Choose time slot that can accept least classes (sdf).

Download Presentation

Car Sequencing Problem

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Car Sequencing Problem An update

  2. How to certify output Standard output The Certificate class

  3. Easy Problems We have a directory of easy problems How were these made? Why do we need easy problems?

  4. Heuristics Variable ordering Choose time slot that can accept least classes (sdf) Value ordering What class should we put in that slot? - class with least options? - class where product of (nonzero) options is low? - class of least demand?

  5. And so on

  6. And so on

  7. BMS paper is well worth a look

  8. The Link Constraint IF S[i] = c THEN for 0 ≤ j ≤ m O[i][j] = o[c][j] m is # options

  9. The Link Constraint IF S[i] = c THEN for 0 ≤ j ≤ m O[i][j] = o[c][j] Using ifOnlyIf ifOnlyIf(S[i] = c, and(O[i][0] =o[c][0], …, O[i][m]=o[c][m]))

  10. The Link Constraint IF S[i] = c THEN for 0 ≤ j ≤ m O[i][j] = o[c][j] Using implies implies(S[i] = c, O[i][0]=o[c][0]) . . . implies(S[i] = c, O[i][m]=o[c][m])

  11. The Link Constraint IF S[i] = c THEN for 0 ≤ j ≤ m O[i][j] = o[c][j] What happens if due to propagation some O[i][j] is set? Using implies implies(S[i] = c, O[i][0]=o[c][0]) . . . implies(S[i] = c, O[i][m]=o[c][m]) P  Q and Q is false?

  12. How big is the model? IF S[i] = c THEN for 0 ≤ j ≤ m O[i][j] = o[c][j] How many of these constraints are there? Using implies implies(S[i] = c, O[i][0]=o[c][0]) . . . implies(S[i] = c, O[i][m]=o[c][m]) How big is the model?

  13. How big is the model? Have a look at the p/q constraint

  14. Two models linked? One has S, a sequence of classes The other has an array of cars allocated positions This might allow better heuristics

  15. Channeling

  16. Questions?

More Related