towards solver independent
play

Towards Solver-Independent Propagators 1 Jean-No el Monette, Pierre - PowerPoint PPT Presentation

Towards Solver-Independent Propagators 1 Jean-No el Monette, Pierre Flener, and Justin Pearson ASTRA Research Group on Constraint Programming Department of Information Technology Uppsala University Sweden


  1. Towards Solver-Independent Propagators 1 Jean-No¨ el Monette, Pierre Flener, and Justin Pearson ASTRA Research Group on Constraint Programming Department of Information Technology Uppsala University Sweden http://www.it.uu.se/research/group/astra Journ´ ees Francophones de Programmation par Contraintes 2013 1 supported by grant 2011-6133 of VR, the Swedish Research Council

  2. Propagators Introduction Language Propagator tailored especially for a global constraint. and Properties Tedious to make it correct, efficient, compliant with the Compilation and solver interface, in various programming languages. Evaluation Conclusion Aim: Solver-independent language to describe propagators. Ease the implementation and sharing of propagators. Ease the proof of propagator properties. JFPC 2013 - 2 -

  3. Indexicals Introduction Language X in min(Y)+min(Z)..max(Y)+max(Z); and Properties Compilation and An indexical defines a restriction on the domain of a Evaluation decision variable Conclusion Used e.g. in SICStus Prolog. Deal with constraints of fixed arity. Our contribution: deal with constraints of non-fixed arity (i.e., global constraints). JFPC 2013 - 3 -

  4. The PLUS Constraint 1 def PLUS(vint X, vint Y, vint Z){ propagator(DR){ 2 X in dom(Y)+dom(Z); Introduction 3 4 Y in dom(X)-dom(Z); Language and 5 Z in dom(X)-dom(Y); Properties 6 } Compilation 7 propagator(BR){ and Evaluation 8 X in (min(Y)+min(Z)) .. (max(Y)+max(Z)) ; Conclusion 9 Y in (min(X)-max(Z)) .. (max(X)-min(Z)) ; 10 Z in (min(X)-max(Y)) .. (max(X)-min(Y)) ; 11 } 12 propagator(VR){ 13 X in {val(Y)+val(Z)}; 14 Y in {val(X)-val(Z)}; 15 Z in {val(X)-val(Y)}; 16 } 17 checker{ val(X) == val(Y) + val(Z) } 18 } JFPC 2013 - 4 -

  5. The PLUS Constraint 1 def PLUS(vint X, vint Y, vint Z){ propagator(DR){ 2 X in dom(Y)+dom(Z); Introduction 3 4 Y in dom(X)-dom(Z); Language and 5 Z in dom(X)-dom(Y); Properties 6 } Compilation 7 propagator(BR){ and Evaluation 8 X in (min(Y)+min(Z)) .. (max(Y)+max(Z)) ; Conclusion 9 Y in (min(X)-max(Z)) .. (max(X)-min(Z)) ; 10 Z in (min(X)-max(Y)) .. (max(X)-min(Y)) ; 11 } 12 propagator(VR){ 13 X in {val(Y)+val(Z)}; 14 Y in {val(X)-val(Z)}; 15 Z in {val(X)-val(Y)}; 16 } 17 checker{ val(X) == val(Y) + val(Z) } 18 } m JFPC 2013 - 4 -

  6. The PLUS Constraint 1 def PLUS(vint X, vint Y, vint Z){ propagator(DR){ 2 X in dom(Y)+dom(Z); Introduction 3 4 Y in dom(X)-dom(Z); Language and 5 Z in dom(X)-dom(Y); Properties 6 } Compilation 7 propagator(BR){ and Evaluation 8 X in (min(Y)+min(Z)) .. (max(Y)+max(Z)) ; Conclusion 9 Y in (min(X)-max(Z)) .. (max(X)-min(Z)) ; 10 Z in (min(X)-max(Y)) .. (max(X)-min(Y)) ; 11 } 12 propagator(VR){ 13 X in {val(Y)+val(Z)}; 14 Y in {val(X)-val(Z)}; 15 Z in {val(X)-val(Y)}; 16 } 17 checker{ val(X) == val(Y) + val(Z) } 18 } m m m JFPC 2013 - 4 -

  7. The PLUS Constraint 1 def PLUS(vint X, vint Y, vint Z){ propagator(DR){ 2 X in dom(Y)+dom(Z); Introduction 3 4 Y in dom(X)-dom(Z); Language and 5 Z in dom(X)-dom(Y); Properties 6 } Compilation 7 propagator(BR){ and Evaluation 8 X in (min(Y)+min(Z)) .. (max(Y)+max(Z)) ; Conclusion 9 Y in (min(X)-max(Z)) .. (max(X)-min(Z)) ; 10 Z in (min(X)-max(Y)) .. (max(X)-min(Y)) ; 11 } 12 propagator(VR){ 13 X in {val(Y)+val(Z)}; 14 Y in {val(X)-val(Z)}; 15 Z in {val(X)-val(Y)}; 16 } 17 checker{ val(X) == val(Y) + val(Z) } 18 } m JFPC 2013 - 4 -

  8. The PLUS Constraint 1 def PLUS(vint X, vint Y, vint Z){ propagator(DR){ 2 X in dom(Y)+dom(Z); Introduction 3 4 Y in dom(X)-dom(Z); Language and 5 Z in dom(X)-dom(Y); Properties 6 } Compilation 7 propagator(BR){ and Evaluation 8 X in (min(Y)+min(Z)) .. (max(Y)+max(Z)) ; Conclusion 9 Y in (min(X)-max(Z)) .. (max(X)-min(Z)) ; 10 Z in (min(X)-max(Y)) .. (max(X)-min(Y)) ; 11 } 12 propagator(VR){ 13 X in {val(Y)+val(Z)}; 14 Y in {val(X)-val(Z)}; 15 Z in {val(X)-val(Y)}; 16 } 17 checker{ val(X) == val(Y) + val(Z) } 18 } m JFPC 2013 - 4 -

  9. The SUM Global Constraint 1 def SUM(vint[] X,vint N){ Introduction 2 propagator(v1){ Language 3 N in sum(i in rng(X))(dom(X[i])); and Properties 4 forall(i in rng(X)) 5 X[i] in dom(N) - sum(j in rng(X):j!=i)(dom(X[j])); Compilation and 6 } Evaluation 7 propagator(v2){ 8 Conclusion N in sum(i in rng(X))(min(X[i])) .. 9 sum(i in rng(X))(max(X[i])); 10 forall(i in rng(X)) 11 X[i] in min(N) - sum(j in rng(X):j!=i)(max(X[j])) .. 12 max(N) - sum(j in rng(X):j!=i)(min(X[j])); 13 } 14 checker{ val(N) = sum(i in rng(X))(val(X[i])) } 15 } JFPC 2013 - 5 -

  10. The SUM Global Constraint 1 def SUM(vint[] X,vint N){ Introduction 2 propagator(v1){ Language 3 N in sum(i in rng(X))(dom(X[i])); and Properties 4 forall(i in rng(X)) 5 X[i] in dom(N) - sum(j in rng(X):j!=i)(dom(X[j])); Compilation and 6 } Evaluation 7 propagator(v2){ 8 Conclusion N in sum(i in rng(X))(min(X[i])) .. 9 sum(i in rng(X))(max(X[i])); 10 forall(i in rng(X)) 11 X[i] in min(N) - sum(j in rng(X):j!=i)(max(X[j])) .. 12 max(N) - sum(j in rng(X):j!=i)(min(X[j])); 13 } 14 checker{ val(N) = sum(i in rng(X))(val(X[i])) } 15 } m JFPC 2013 - 5 -

  11. The SUM Global Constraint 1 def SUM(vint[] X,vint N){ Introduction 2 propagator(v1){ Language 3 N in sum(i in rng(X))(dom(X[i])); and Properties 4 forall(i in rng(X)) 5 X[i] in dom(N) - sum(j in rng(X):j!=i)(dom(X[j])); Compilation and 6 } Evaluation 7 propagator(v2){ 8 Conclusion N in sum(i in rng(X))(min(X[i])) .. 9 sum(i in rng(X))(max(X[i])); 10 forall(i in rng(X)) 11 X[i] in min(N) - sum(j in rng(X):j!=i)(max(X[j])) .. 12 max(N) - sum(j in rng(X):j!=i)(min(X[j])); 13 } 14 checker{ val(N) = sum(i in rng(X))(val(X[i])) } 15 } m JFPC 2013 - 5 -

  12. The EXACTLY Global Constraint 1 def EXACTLY(vint[] X, vint N, int v){ Introduction 2 propagator{ 3 N in sum(i in rng(X))(b2i(entailed(EQ(X[i], v)))) .. Language 4 sum(i in rng(X))(b2i(satisfiable(EQ(X[i], v)))); and Properties 5 forall(i in rng(X)){ 6 once(val(N) <= Compilation and 7 sum(j in rng(X):i!=j)(b2i(entailed(EQ(X[j], v))))){ Evaluation 8 post(NEQ(X[i], v)); Conclusion 9 } 10 once(val(N) > 11 sum(j in rng(X):i!=j)(b2i(satisfiable(EQ(X[j],v))))){ 12 post(EQ(X[i], v)); 13 } 14 } 15 } 16 checker{ val(N) = sum(i in rng(X))(b2i(val(X[i]) == v)) } 17 } JFPC 2013 - 6 -

  13. The EXACTLY Global Constraint 1 def EXACTLY(vint[] X, vint N, int v){ Introduction 2 propagator{ 3 N in sum(i in rng(X))(b2i(entailed(EQ(X[i], v)))) .. Language 4 sum(i in rng(X))(b2i(satisfiable(EQ(X[i], v)))); and Properties 5 forall(i in rng(X)){ 6 once(val(N) <= Compilation and 7 sum(j in rng(X):i!=j)(b2i(entailed(EQ(X[j], v))))){ Evaluation 8 post(NEQ(X[i], v)); Conclusion 9 } 10 once(val(N) > 11 sum(j in rng(X):i!=j)(b2i(satisfiable(EQ(X[j],v))))){ 12 post(EQ(X[i], v)); 13 } 14 } 15 } 16 checker{ val(N) = sum(i in rng(X))(b2i(val(X[i]) == v)) } 17 } m JFPC 2013 - 6 -

  14. The EXACTLY Global Constraint 1 def EXACTLY(vint[] X, vint N, int v){ Introduction 2 propagator{ 3 N in sum(i in rng(X))(b2i(entailed(EQ(X[i], v)))) .. Language 4 sum(i in rng(X))(b2i(satisfiable(EQ(X[i], v)))); and Properties 5 forall(i in rng(X)){ 6 once(val(N) <= Compilation and 7 sum(j in rng(X):i!=j)(b2i(entailed(EQ(X[j], v))))){ Evaluation 8 post(NEQ(X[i], v)); Conclusion 9 } 10 once(val(N) > 11 sum(j in rng(X):i!=j)(b2i(satisfiable(EQ(X[j],v))))){ 12 post(EQ(X[i], v)); 13 } 14 } 15 } 16 checker{ val(N) = sum(i in rng(X))(b2i(val(X[i]) == v)) } 17 } m m m JFPC 2013 - 6 -

  15. Language Design Decisions Introduction Based on indexicals: close to the human reasoning. Language and Stateless: cannot describe e.g. DC A LL D IFFERENT . Properties Strongly typed: int, vint, bool, set, cstr Compilation and Evaluation Introduces arrays and n -ary operators. Conclusion Meta-constraints, constraint invocation, and local variables. Limited number of new constructs, for simplicity of use. No solver-specific hooks: only domain access and narrowing. JFPC 2013 - 7 -

  16. Desired Properties of a Propagator Correct Introduction Checking, singleton correctness, and singleton Language and completeness Properties Compilation Contracting and Evaluation Monotonic Conclusion Domain consistent or other consistency level Idempotent Low time (and space) complexity Avoid useless execution: • Entailment detection • Subscription to relevant events JFPC 2013 - 8 -

  17. Syntactic Analysis and Tools Most properties are difficult to prove for a given propagator Introduction but... Language and Indexicals satisfy contraction by definition. Properties Compilation Possible to check the monotonicity [Carlson et al, and ICLP’94] Evaluation Conclusion Correctness and checking can sometimes be proven. In addition to analysis, we can also make algorithmic transformations: Changing the level of reasoning (e.g., use bounds instead of the whole domain). Grounding some decision variables. JFPC 2013 - 9 -

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