combining combining constraint programming constraint
play

Combining Combining Constraint Programming Constraint Programming - PowerPoint PPT Presentation

Combining Combining Constraint Programming Constraint Programming and Integer Programming and Integer Programming IP- Model GLOBAL CONSTRAINT GLOBAL CONSTRAINT min Z = c ij x ij OPTIMIZATION FILTERING i


  1. Combining Combining Constraint Programming Constraint Programming and Integer Programming and Integer Programming IP- Model GLOBAL CONSTRAINT GLOBAL CONSTRAINT min Z = ∑ ∑ ∑ ∑ c ij x ij ∑ ∑ ∑ ∑ OPTIMIZATION FILTERING i ∈ V j ∈ V COMPONENT ALGORITHM ∑ ∑ x ij = 1 ∑ ∑ j ∈ ∈ V ∈ ∈ Special Purpose COST-BASED i ∈ V Algorithm FILTERING ∑ x ij = 1 ∑ ∑ ∑ ALGORITHM i ∈ ∈ V ∈ ∈ min c T x + λ ( α α α α x- α α 0 ) α α j ∈ V x( δ + (i)) =1 CUT ∑ ∑ ∑ ∑ ∑ x ij ≥ ∑ ∑ ∑ x( δ - (i)) =1 ≥ 1 S ⊂ ≥ ≥ ⊂ V S ≠∅ ⊂ ⊂ ≠∅ ≠∅ ≠∅ GENERATOR i ∈ S j ∈ V\S x ij ≥ ≥ 0 and integer ≥ ≥ 1

  2. Constraint Programming (CP) Preliminaries • CP on Finite Domains CP(FD): a programming paradigm exploiting Constraint Satisfaction techniques • A Constraint Satisfaction Problem (CSP) consists of: – a set of a set of variables variables ( ( V V 1 , V V 2 ,…, V V n ) – 1 , 2 ,…, n ) – a discrete domain a discrete domain ( ( D D 1 , D D 2 ,…, D D n ) for each variable for each variable – 1 , 2 ,…, n ) – a set of a set of constraints constraints on on te te variables: variables: – “relations among variables which represent a subset of the Cartesian product of the domains D 1 x D 2 x ... x D n ” Solution of a CSP : : Solution of a CSP an assignment of values to variables consistent with the constr an assignment of values to variables consistent with the constraints aints E. Tsang Tsang: “ : “Foundations Foundations of of Constraint Constraint Satisfaction Satisfaction” ” Academic Academic Press,1992. Press,1992. E. 2

  3. CP Preliminaries – interaction among constraints Each variable is involved in many constraints � Any change in the domain of a single variable may propagate to other variables. Constraints agents view: during their lifetime, the constraints alternate their status between suspended and woken states (triggered by events). Example: Y = Z + 1 X::[1..5], X = Y + 1 Y::[1..5], Z::[1..5] X = Z - 1 3

  4. Y = Z + 1 X::[1..5], X = Y + 1 Y::[1..5], Z::[1..5] X = Z - 1 – First propagation of X = Y + 1 yields X::[2..5], X = Y + 1 Y::[1..4], is then suspended Z::[1..5] 4

  5. – Second propagation of Y = Z + 1 yields X::[2..5], Y = Z + 1 Y::[2..4], is then suspended Z::[1..3] – The domain of Y has changed , X = Y + 1 is then awakened X::[3..5], X = Y + 1 Y::[2..4], is then suspended Z::[1..3] 5

  6. – Third propagation of X = Z - 1 yields X::[] Y::[2..4] Z::[1..3] FAILURE detected 6

  7. CP Preliminaries – search • Pruning all the infeasible values from variable domains often has the same complexity as solving the original problem • Propagation algorithms are then incomplete , i.e., when propagation is stopped, still some values left in the variable domains can be inconsistent � a SEARCH step is executed. – Branching strategies define the way of partitioning the problem P into P easier subproblems P 1 , P 2 ,…, P n . – To each subproblem: apply again propagation. – New branches can be pruned P 1 P 2 P 3 P 4 … P n because of the new information derived from the branching 7

  8. The search scheme variable selection value selection continue backtrack on success on failure constraint propagation const. const const 1 2 3 8

  9. CP Preliminaries: dealing with an objective function • What about the objective function? As soon as a feasible solution of value Z * (say) is found, a new bounding constraint is added so as to impose that further solutions must have a better value: Z < Z * Hence, CP solves a sequence of feasibility problems, constrained to improve the objective function value. However: Z is in general the sum of the values assumed by several variables � t he propagation of the bounding constraint is typically very weak 9

  10. Example: (ATSP) Asymmetric Traveling SalesmanProblem Given • a directed graph G=(V,A) with nodes 0,1,…, n-1 • arc costs c ij Find • a Hamiltonian tour (= closed circuit passing exactly once through all nodes) of minimum total cost 0 i c ij j 10

  11. ATSP: a CP model Given the directed graph G=(V,A) , associate to each node i a variable X i whose domain contains the next possible nodes in a simple path. CP standard modules include the following path constraint: X 0 ::D 0 , X 1 ::D 1 ,..., X k ::D k path([X 0 ,X 1 ,…,X k ]) saying that the assignment of variables X 0 ,X 1 ,…,X k has to define a simple path involving all nodes 0,…,k . 11

  12. The Asymmetric Travelling Salesman Problem (ATSP) can then be formulated through the CP path constraint as follows: • one of the nodes, say node 0 , is duplicated generating node n • the constraint path([X 0 ,X 1 ,…,X n ]) is imposed 0 i n c ij j 12

  13. ATSP: an IP model 0 i ∈ x { 0 , 1 } ij = x ij 1 iff ( i , j ) in the solution ∑ j Minimize : c x ij ij ∈ ( i , j ) A ∑ = ∀ ∈ = Subject To : x 1 j V (indegree 1) ij ∈ i V ∑ = ∀ ∈ = x 1 i V (outdegree 1) ij ∈ j V ∑∑ >= ∀ ⊂ ≠ x 1 S V : S 0 (no subtours) ij ∈ ∉ i S j S >= ∀ ∈ x 0 integer ( i , j ) A ij 13

  14. Comparing the CP and IP models Mapping IP- Model CP- Model: min Z = ∑ ∑ ∑ ∑ ∑ ∑ ∑ ∑ c ij x ij X i ::[v 1 ,v 2 ,…,v n ] i=0..n-1 i ∈ V j ∈ V ∑ x ij = 1 ∑ ∑ ∑ j ∈ ∈ ∈ ∈ V path([X 0 ,X 1 ,…,X n ]) i ∈ V C i ::[c i1 ,c i2 ,…,c in ]i=0..n-1 ∑ ∑ ∑ x ij = 1 ∑ i ∈ ∈ ∈ ∈ V C n = 0; X n = 0; j ∈ V ∑ ∑ ∑ ∑ ∑ ∑ x ij ≥ ∑ ∑ C 0 +…+C n-1 = Z ≥ ≥ ≥ 1 S ⊂ ⊂ ⊂ V S ≠∅ ⊂ ≠∅ ≠∅ ≠∅ i ∈ S j ∈ V\S minimize(Z) x ij ≥ ≥ ≥ ≥ 0 and integer x ij =1 X i = v j path ([X 0 , X 1 , ….., X n ]) linear constr.s C i =c ij c ij iff x ij =1 14

  15. Pure IP vs Pure CP [ [red red,blue,green,yellow, ,blue,green,yellow,pink pink] ] [red [ red,blue,green,yellow, ,blue,green,yellow,pink pink] ] ≠ ≠ V 1 V V 2 V 1 2 ≠ ≠ ≠ ≠ ≠ ≠ ≠ ≠ ≠ ≠ ≠ ≠ V 3 V V 4 V 3 4 ≠ ≠ [red [ red,blue,green,yellow, ,blue,green,yellow,pink pink] ] ≠ ≠ V V 5 5 [red [ red,blue,green,yellow, ,blue,green,yellow,pink pink] ] Almost useless LP Tight LP relaxation, easy relaxation, hard feasibility: feasibility: IP wins 15 CP wins

  16. CP+IP: preliminary results • Although CP is not competitive for problems like TSP and ATSP , the addition of an IP optimization component within the CP framework allows for the solution of instances of significantly larger size ( Lodi et al., 2003 ) • Pure CP gets stuck on problems with 15-20 nodes. TSP and ATSP instances Instance pure AP AP + Lagrangean relaxation of cuts Opt Time Fails Opt Time Fails Gr17 2085 0.39 511 2085 0.49 30 Fri26 937 0.82 725 937 0.71 80 Bays29 2020 4.12 4185 2020 1.20 403 699 >300 - 699 5.55 1081 Dantzig42 14854* >300 - 14422 130.00 50K RY48P 16

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