filtering algorithms for global constraints
play

Filtering algorithms for global constraints Marco Chiarandini - PowerPoint PPT Presentation

DM841 D ISCRETE O PTIMIZATION Part I Filtering algorithms for global constraints Marco Chiarandini Department of Mathematics & Computer Science University of Southern Denmark Global Constraints Soft Constraints Outline Optimization


  1. DM841 D ISCRETE O PTIMIZATION Part I Filtering algorithms for global constraints Marco Chiarandini Department of Mathematics & Computer Science University of Southern Denmark

  2. Global Constraints Soft Constraints Outline Optimization Constraints 1. Global Constraints Scheduling 2. Soft Constraints 3. Optimization Constraints 2

  3. Global Constraints Soft Constraints Outline Optimization Constraints 1. Global Constraints Scheduling 2. Soft Constraints 3. Optimization Constraints 3

  4. Global Constraints Soft Constraints Declarative and Operational Semantic Optimization Constraints ◮ Declarative Semantic: specify what the constraint means. Evaluation criteria is expressivity. ◮ Operational Semantic: specify how the constraint is computed, i.e., is kept consistent with its declarative semantic. Evaluation criteria are efficiency and effectiveness. Example So far, we have defined only the Declarative Semantic of the alldifferent constraint, not its Operational Semantic. 4

  5. Global Constraints Soft Constraints Domain Consistency Optimization Constraints Definition A constraint C on the variables x 1 , . . . , x r with respective domains D 1 , . . . , D r is called domain consistent (or generalized/hyper-arc consistent) if for each variable x i and each value d i ∈ D i there exist compatible values in the domains of all the other variables of C , that is, there exists a tuple ( d 1 , . . . , d i , . . . , d r ) ∈ C . In other terms: If value v is in the domain of variable x , then there exists a solution to the constraint with value v assigned to variable x . Examples: alldifferent ( distinct ), knapsack , ... Definition Filtering algorithm ≡ reduction rule: reduce D ( x i ) for 1 ≤ i ≤ r such that it still contains all values that the variable can assume in a solution of C . D ( x i ) ← D ( x i ) ∩{ d i ∈ D ( x i ) | D ( x 1 × D ( x i − 1 ) ×{ v i }× D ( x i + 1 ) × . . . , D ( x r ) }∩ C � = ∅} Generic arc consistency algorithms are in O ( erd r ) . 5

  6. Global Constraints Soft Constraints Consistency and Filtering Algorithms Optimization Constraints ◮ Different filtering algorithms, which must be able to: 1. Check consistency of C w.r.t. the current variable domains 2. Remove inconsistent values from the variable domains ◮ The stronger is the level of consistency, the higher is the complexity of the filtering algorithm: Different level of consistency (domain, bound(Z), bound(D), range, value): ◮ complete filtering, optimal pruning, domain completeness ≡ domain/arc consistency ◮ partial filtering, bound completeness ≡ bound relaxed completeness ... again the alldifferent case There exist in literature several filtering algorithms for the alldifferent constraints. 6

  7. Global Constraints Soft Constraints Decomposition Approach Optimization Constraints A decomposition of a global constraint C is a polynomial time transformation δ k ( P ) replacing C by some new bounded arity constraint (and possibly new variables) while preserving the set of tuples allowed on X ( C ) . Global Constraint Decomposition Given any P = � X ( C ) , D , C = { C }� , δ k ( P ) is such that ◮ X ( C ) ⊆ X δ k ( P ) ◮ for all x i ∈ X ( C ) , D ( x i ) = D δ k ( P ) ( x i ) ◮ for all C j ∈ C δ k ( P ) , | X ( C j ) | ≤ k and ◮ sol ( P ) = π X ( C ) ( sol ( δ k ( P )) Example atmost ( x 1 , . . . , x n , p , v ) (at most p variables in x 1 , . . . , x n take value v ). Decomposition: n + 1 additional variables y 0 , . . . , y n ( x i = v ∧ y i = y i − 1 + 1 ) ∨ ( x i � = v ∧ y i = y i − 1 ) for all i , 1 ≤ i ≤ n , and domains D ( y 0 ) = { 0 } and D ( y i ) = { 0 , . . . , p } for 1 ≤ i ≤ n . 7

  8. Global Constraints Soft Constraints Optimization Constraints These decompositions can be: ◮ preserving solutions ◮ preserving generalized arc consistency ◮ preserving the complexity of enforcing generalized arc consistency The decomposition of atmost preserves solutions and generalized arc consistency For the alldifferent only preserving solutions. Yet sometimes it is possible to construct a specialized algorithm that enforces GAC in polynomial time. 8

  9. Global Constraints Soft Constraints alldifferent Optimization Constraints alldifferent constraint Let x 1 , x 2 , . . . , x n be variables. Then: alldifferent ( x 1 , ..., x n ) = { ( d 1 , ..., d n ) | ∀ i d i ∈ D ( x i ) , ∀ i � = j , d i � = d j } . 9

  10. Global Constraints Soft Constraints Complete Filtering for alldifferent Optimization Constraints 1. build value graph G = ( X , D ( X ) , E ) 2. compute maximum matching M in G 3. if | M | < | X | then return false 4. mark all arcs in oriented graph G M that are not in M as unused 5. compute SCCs in G M and mark all arcs in a SCC as used 6. perform breadth-first search in G M starting from M -free vertices, and mark all traversed arcs as used if they belong to an even path 7. for all arcs ( x i , d ) in G M marked as unused do D ( x i ) := D ( x i ) \ d if D ( x i ) = ∅ then return false 8. return true Overall complexity: O ( n √ m + ( n + m ) + m ) It can be updated incrementally if other constraints remove some values. 10

  11. Global Constraints Soft Constraints Example Optimization Constraints 11

  12. Global Constraints Soft Constraints Example Optimization Constraints 12

  13. Global Constraints Soft Constraints Relaxed Consistency Optimization Constraints Definition A constraint C on the variables x 1 , . . . , x m with respective domains D 1 , . . . , D m is called bound(Z) consistent if for each variable x i and each value d i ∈ { min ( D i ) , max ( D i ) } there exist compatible values between the min and max domain of all the other variables of C , that is, there exists a value d j ∈ [ min ( D i ) , max ( D i )] for all j � = i such that ( d 1 , . . . , d i , . . . , d k ) ∈ C . Definition A constraint C on the variables x 1 , . . . , x m with respective domains D 1 , . . . , D m is called range consistent if for each variable x i and each value d i ∈ D i there exist compatible values between the min and max domain of all the other variables of C , that is, there exists a value d j ∈ [ min ( D i ) , max ( D i )] for all j � = i such that ( d 1 , . . . , d i , . . . , d k ) ∈ C . (bound ( D ) if its bounds belong to a support on C ) GAC < ( bound ( D ) , range ) < bound ( Z ) 13

  14. Global Constraints Soft Constraints Bound Consistency [Mehlorn&Thiel2000] Optimization Constraints Definition (Convex Graph) A bipartite graph G = ( X , Y , E ) is convex if the vertices of Y can be assigned distinct integers from [ 1 , | Y | ] such that for every vertex x ∈ X , the numbers assigned to its neighbors form a subinterval of [ 1 , | Y | ] . In convex graph we can find a matching in linear time. 14

  15. Global Constraints Soft Constraints Example Optimization Constraints 15

  16. Global Constraints Soft Constraints Survey of complexity: effectiveness and efficiency Optimization Constraints Consistency Idea Complexity Amort. Reference(s) O ( n 2 ) arc [VanHentenryck1989] bound Hall O ( n log n ) [Puget1998] Flows [Mehlhorn&Thiel2000] Hall [Lopez&All2003] O ( n ) [Mehlhorn&Thiel2000] [Lopez&All2003] O ( n 2 ) range Hall [Leconte1996] √ O ( n √ m ) domain Flows O ( n k ) [Régin1994],[Costa1994] Where n = number of variables, m = � i ∈ 1 ... n | D i | , and k = number of values removed. 16

  17. Global Constraints Soft Constraints Filtering cardinality Optimization Constraints cardinality or gcc (global cardinality constraint) Let x 1 , . . . , x n be assignment variables whose domains are contained in { v 1 , . . . , v n ′ } and let { c v 1 , . . . , c v n ′ } be count variables whose domains are sets of integers. Then cardinality ([ x 1 , ..., x n ] , [ c v 1 , ..., c v n ′ ]) = { ( w 1 , ..., w n , o 1 , ..., o n ′ ) | w j ∈ D ( x j ) ∀ j , occ ( v i , ( w 1 , ..., w n )) = o i ∈ D ( c v i ) ∀ i } . ( occ number of occurrences) � generalization of alldifferent NP-hard to filter domain of all variables. But if constant intervals, then polynomial algorithm via network flows. (integral feasible ( s , t )-flow) 17

  18. Global Constraints Soft Constraints Filtering knapsack Optimization Constraints Knapsack and Sum constraints (Linear constraints over integer variables) Let x 1 , . . . , x n , z , c be integer variables: knapsack ([ x 1 , . . . , x n ] , z , c ) =     �  ( d 1 , . . . , d n , d ) | d i ∈ D ( x i ) ∀ i , d ∈ D ( z ) , d ≤ c i d i  ∩ i = 1 ,..., n     �  ( d 1 , . . . , d n , d ) | d i ∈ D ( x i ) ∀ i , d ∈ D ( z ) , d ≥ c i d i  . i = 1 ,..., n Binary Knapsack (Linear constraints over Boolean variables) � c i x i = z , x i ∈ { 0 , 1 } � l z ≤ � c i x i ≤ u z 18

  19. Global Constraints Soft Constraints Optimization Constraints Variant of the subset sum problem: Given a set of numbers find a subset whose sum is 0. Eg: − 7 , − 3 , − 2 , 5 , 8 � − 3 − 2 + 5 = 0 10 ≤ 2 x 1 + 3 x 2 + 4 x 3 + 5 x 4 ≤ 12 19

  20. Global Constraints Soft Constraints Filtering regular Optimization Constraints “ regular ” constraint Let M = ( Q , Σ , δ, q 0 , F ) be a DFA and let X = { x 1 , x 2 , . . . , x n } be a set of variables with D ( x i ) ⊆ Σ for 1 ≤ i ≤ n . Then regular ( X , M ) = { ( d 1 , ..., d n ) | ∀ i , d i ∈ D ( x i ) , [ d 1 , d 2 , . . . , d n ] ∈ L ( M ) } . 20

  21. Global Constraints Soft Constraints Optimization Constraints 21

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