outline
play

Outline Intuition 1. Intuition Example 1 Example 2 Example 1 - PowerPoint PPT Presentation

Topic 14: Propagation 1 (Version of 6th November 2020) Pierre Flener Optimisation Group Department of Information Technology Uppsala University Sweden Course 1DL441: Combinatorial Optimisation and Constraint Programming, whose part 1 is


  1. Topic 14: Propagation 1 (Version of 6th November 2020) Pierre Flener Optimisation Group Department of Information Technology Uppsala University Sweden Course 1DL441: Combinatorial Optimisation and Constraint Programming, whose part 1 is Course 1DL451: Modelling for Combinatorial Optimisation 1 Based partly on material by Christian Schulte

  2. Outline Intuition 1. Intuition Example 1 Example 2 Example 1 Example 3 Example 2 Algorithms Reminders of Example 3 Discrete Mathematics Solving: Overview Propagator for a Constraint Fixpoint of Multiple Propagators 2. Algorithms Reminders of Discrete Mathematics Solving: Overview Propagator for a Constraint Fixpoint of Multiple Propagators COCP/M4CO 14 - 2 -

  3. Outline Intuition 1. Intuition Example 1 Example 2 Example 1 Example 3 Example 2 Algorithms Reminders of Example 3 Discrete Mathematics Solving: Overview Propagator for a Constraint Fixpoint of Multiple Propagators 2. Algorithms Reminders of Discrete Mathematics Solving: Overview Propagator for a Constraint Fixpoint of Multiple Propagators COCP/M4CO 14 - 3 -

  4. Outline Intuition 1. Intuition Example 1 Example 2 Example 1 Example 3 Example 2 Algorithms Reminders of Example 3 Discrete Mathematics Solving: Overview Propagator for a Constraint Fixpoint of Multiple Propagators 2. Algorithms Reminders of Discrete Mathematics Solving: Overview Propagator for a Constraint Fixpoint of Multiple Propagators COCP/M4CO 14 - 4 -

  5. Example (Agricultural experiment design, AED) plot1 plot2 plot3 plot4 plot5 plot6 plot7 barley – – – – ✓ ✓ ✓ corn – – – – ✓ ✓ ✓ Intuition millet – – – – ✓ ✓ ✓ Example 1 Example 2 oats – – – – ✓ ✓ ✓ Example 3 rye – – – – ✓ ✓ ✓ Algorithms spelt – – ✓ ✓ – – ✓ Reminders of Discrete Mathematics wheat – – ✓ – ✓ ✓ – Solving: Overview Propagator for a Constraint Fixpoint of Multiple Constraints to be satisfied : Propagators 1 Equal growth load: Every plot grows 3 grains. 2 Equal sample size: Every grain is grown in 3 plots. 3 Balance: Every grain pair is grown in 1 common plot. Instance : 7 plots, 7 grains, 3 grains/plot, 3 plots/grain, balance 1. General term: balanced incomplete block design (BIBD). COCP/M4CO 14 - 5 -

  6. Example (Agricultural experiment design, AED) plot1 plot2 plot3 plot4 plot5 plot6 plot7 barley 1 1 1 0 0 0 0 corn 1 0 0 1 1 0 0 Intuition millet 1 0 0 0 0 1 1 Example 1 Example 2 oats 0 1 0 1 0 1 0 Example 3 rye 0 1 0 0 1 0 1 Algorithms spelt 0 0 1 1 0 0 1 Reminders of Discrete Mathematics wheat 0 0 1 0 1 1 0 Solving: Overview Propagator for a Constraint Fixpoint of Multiple Constraints to be satisfied : Propagators 1 Equal growth load: Every plot grows 3 grains. 2 Equal sample size: Every grain is grown in 3 plots. 3 Balance: Every grain pair is grown in 1 common plot. Instance : 7 plots, 7 grains, 3 grains/plot, 3 plots/grain, balance 1. General term: balanced incomplete block design (BIBD). COCP/M4CO 14 - 5 -

  7. In a BIBD, the plots are blocks and the grains are varieties: Example (BIBD integer model: ✓ � 1 and – � 0) -3 enum Varieties; enum Blocks; Intuition -2 int: blockSize; int: sampleSize; int: balance; Example 1 Example 2 -1 array[Varieties,Blocks] of var 0..1: BIBD; Example 3 0 solve satisfy; Algorithms 1 constraint forall(b in Blocks) Reminders of (blockSize = count(BIBD[..,b], 1)); Discrete Mathematics Solving: Overview 2 constraint forall(v in Varieties) Propagator for a Constraint (sampleSize = count(BIBD[v,..], 1)); Fixpoint of Multiple 3 constraint forall(v, w in Varieties where v < w) Propagators (balance = count([BIBD[v,b]*BIBD[w,b] | b in Blocks], 1)); Example (Instance data for our AED) -3 Varieties = {barley,...,wheat}; Blocks = {plot1,...,plot7}; -2 blockSize = 3; sampleSize = 3; balance = 1; COCP/M4CO 14 - 6 -

  8. Store after filling the first four rows Example (BIBD integer model) Intuition plot1 plot2 plot3 plot4 plot5 plot6 plot7 Example 1 Example 2 barley ✓ ✓ ✓ – – – – Example 3 corn ✓ – – ✓ ✓ – – Algorithms millet ✓ – – – – ✓ ✓ Reminders of Discrete Mathematics oats – – – – ✓ ✓ ✓ Solving: Overview Propagator for a rye ? Constraint Fixpoint of Multiple spelt Propagators wheat COCP/M4CO 14 - 7 -

  9. Store after filling the first four rows Example (BIBD integer model) Intuition plot1 plot2 plot3 plot4 plot5 plot6 plot7 Example 1 Example 2 barley ✓ ✓ ✓ – – – – Example 3 corn ✓ – – ✓ ✓ – – Algorithms millet ✓ – – – – ✓ ✓ Reminders of Discrete Mathematics oats – – – – ✓ ✓ ✓ Solving: Overview Propagator for a rye ? Constraint Fixpoint of Multiple spelt Propagators wheat But plot1 cannot grow rye as that would violate the first constraint (every plot grows 3 grains). COCP/M4CO 14 - 7 -

  10. Store after filling the first four rows Example (BIBD integer model) Intuition plot1 plot2 plot3 plot4 plot5 plot6 plot7 Example 1 Example 2 barley ✓ ✓ ✓ – – – – Example 3 corn ✓ – – ✓ ✓ – – Algorithms millet ✓ – – – – ✓ ✓ Reminders of Discrete Mathematics oats – – – – ✓ ✓ ✓ Solving: Overview Propagator for a rye – Constraint Fixpoint of Multiple spelt Propagators wheat But plot1 cannot grow rye as that would violate the first constraint (every plot grows 3 grains). COCP/M4CO 14 - 7 -

  11. Store after filling the first four rows Example (BIBD integer model) Intuition plot1 plot2 plot3 plot4 plot5 plot6 plot7 Example 1 Example 2 barley ✓ ✓ ✓ – – – – Example 3 corn ✓ – – ✓ ✓ – – Algorithms millet ✓ – – – – ✓ ✓ Reminders of Discrete Mathematics oats – – – – ✓ ✓ ✓ Solving: Overview Propagator for a rye – Constraint Fixpoint of Multiple spelt Propagators wheat But plot1 cannot grow rye as that would violate the first constraint (every plot grows 3 grains). Actually, plot1 cannot grow oats, spelt, or wheat either, for the same reason, and this was already propagated when trying the search guess that plot1 grow millet! COCP/M4CO 14 - 7 -

  12. Store after filling the first four rows Example (BIBD integer model) Intuition plot1 plot2 plot3 plot4 plot5 plot6 plot7 Example 1 Example 2 barley ✓ ✓ ✓ – – – – Example 3 corn ✓ – – ✓ ✓ – – Algorithms millet ✓ – – – – ✓ ✓ Reminders of Discrete Mathematics oats – – – – ✓ ✓ ✓ Solving: Overview Propagator for a rye – Constraint Fixpoint of Multiple spelt – Propagators wheat – But plot1 cannot grow rye as that would violate the first constraint (every plot grows 3 grains). Actually, plot1 cannot grow oats, spelt, or wheat either, for the same reason, and this was already propagated when trying the search guess that plot1 grow millet! COCP/M4CO 14 - 7 -

  13. Continuing . . . Example (BIBD integer model) Intuition plot1 plot2 plot3 plot4 plot5 plot6 plot7 Example 1 Example 2 barley ✓ ✓ ✓ – – – – Example 3 corn ✓ – – ✓ ✓ – – Algorithms millet ✓ – – – – ✓ ✓ Reminders of Discrete Mathematics oats – ✓ – ✓ – ✓ – Solving: Overview Propagator for a rye – ? Constraint Fixpoint of Multiple spelt – Propagators wheat – COCP/M4CO 14 - 8 -

  14. Continuing . . . Example (BIBD integer model) Intuition plot1 plot2 plot3 plot4 plot5 plot6 plot7 Example 1 Example 2 barley ✓ ✓ ✓ – – – – Example 3 corn ✓ – – ✓ ✓ – – Algorithms millet ✓ – – – – ✓ ✓ Reminders of Discrete Mathematics oats – ✓ – ✓ – ✓ – Solving: Overview Propagator for a rye – ? Constraint Fixpoint of Multiple spelt – Propagators wheat – Guess: Let plot2 grow rye. Strategy: ✓ guesses first. COCP/M4CO 14 - 8 -

  15. Continuing . . . Example (BIBD integer model) Intuition plot1 plot2 plot3 plot4 plot5 plot6 plot7 Example 1 Example 2 barley ✓ ✓ ✓ – – – – Example 3 corn ✓ – – ✓ ✓ – – Algorithms millet ✓ – – – – ✓ ✓ Reminders of Discrete Mathematics oats – ✓ – ✓ – ✓ – Solving: Overview Propagator for a rye – ✓ Constraint Fixpoint of Multiple spelt – Propagators wheat – Guess: Let plot2 grow rye. Strategy: ✓ guesses first. COCP/M4CO 14 - 8 -

  16. Continuing . . . Example (BIBD integer model) Intuition plot1 plot2 plot3 plot4 plot5 plot6 plot7 Example 1 Example 2 barley ✓ ✓ ✓ – – – – Example 3 corn ✓ – – ✓ ✓ – – Algorithms millet ✓ – – – – ✓ ✓ Reminders of Discrete Mathematics oats – ✓ – ✓ – ✓ – Solving: Overview Propagator for a rye – ✓ Constraint Fixpoint of Multiple spelt – Propagators wheat – Propagation: plot2 cannot grow spelt and wheat as otherwise the first constraint (every plot grows 3 grains) would be violated for plot2. COCP/M4CO 14 - 8 -

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend