prettyclp a light java implementation for teaching clp
play

PrettyCLP: a Light Java Implementation for Teaching CLP Alessio - PowerPoint PPT Presentation

PrettyCLP: a Light Java Implementation for Teaching CLP Alessio Stalla 1 Davide Zanucco 2 Agostino Dovier 2 Viviana Mascardi 1 DISI - Univ. of Genova, alessiostalla@gmail.com,mascardi@disi.unige.it DIMI - Univ. of Udine,


  1. PrettyCLP: a Light Java Implementation for Teaching CLP Alessio Stalla 1 Davide Zanucco 2 Agostino Dovier 2 Viviana Mascardi 1 DISI - Univ. of Genova, alessiostalla@gmail.com,mascardi@disi.unige.it DIMI - Univ. of Udine, zanucco.davide@spes.uniud.it,agostino.dovier@uniud.it Pescara, September 2nd, 2011 Stalla, Zanucco, Dovier, Mascardi () PrettyCLP 1 / 20

  2. Summary Introduction 1 Pretty Prolog 2 CLP(FD) basics 3 Demo 4 Conclusions 5 Stalla, Zanucco, Dovier, Mascardi () PrettyCLP 2 / 20

  3. Introduction Introduction Stalla, Zanucco, Dovier, Mascardi () PrettyCLP 3 / 20

  4. Introduction Introduction Stalla, Zanucco, Dovier, Mascardi () PrettyCLP 3 / 20

  5. Introduction Introduction Stalla, Zanucco, Dovier, Mascardi () PrettyCLP 3 / 20

  6. Introduction Introduction Stalla, Zanucco, Dovier, Mascardi () PrettyCLP 3 / 20

  7. Introduction Introduction Stalla, Zanucco, Dovier, Mascardi () PrettyCLP 3 / 20

  8. Introduction Introduction Stalla, Zanucco, Dovier, Mascardi () PrettyCLP 3 / 20

  9. Introduction Introduction Stalla, Zanucco, Dovier, Mascardi () PrettyCLP 3 / 20

  10. Pretty Prolog Pretty Prolog PrettyProlog was developed by a team of the University of Genova, for providing concrete answers to demands raised by Prolog novices [Stalla, Mascardi, Martelli: CILC09]. Main goal: help to understand the construction and the visit strategy of the SLD tree. It was developed from scratch, without reusing existing Prolog implementations, and designed to be simple, modular, and easily expandable. Stalla, Zanucco, Dovier, Mascardi () PrettyCLP 4 / 20

  11. Pretty Prolog Pretty Prolog PrettyProlog was developed by a team of the University of Genova, for providing concrete answers to demands raised by Prolog novices [Stalla, Mascardi, Martelli: CILC09]. Main goal: help to understand the construction and the visit strategy of the SLD tree. It was developed from scratch, without reusing existing Prolog implementations, and designed to be simple, modular, and easily expandable. In this work we have in fact expanded Pretty Prolog to deal with Constraint Logic Programming on finite domains Propagation algorithms have been implemented. Differences between arc/bounds consistency are made (as much as possible) explicit Stalla, Zanucco, Dovier, Mascardi () PrettyCLP 5 / 20

  12. CLP(FD) basics CLP basics Syntax A first-order language � Π , F , V� is partitioned in the two sets Π C and Π P ( Π = Π C ∪ Π P and Π C ∩ Π P = ∅ ) Π P is the set of program defined predicate symbols Π C is the set of constraints predicate symbols (assumed to contain “ = ”). Similarly, F is partitioned into F C and F P . Stalla, Zanucco, Dovier, Mascardi () PrettyCLP 6 / 20

  13. CLP(FD) basics CLP(FD) basics Syntax We focus on CLP on finite domains CLP(FD): F C contains the binary arithmetic function symbols + , − , ∗ , /, mod etc. as well as a constant symbol for any integer number Π C contains ≤ , < , etc. false is assumed to be a special predicate in Π P which has no rules defining it. domain and labeling are assumed to be in Π C Stalla, Zanucco, Dovier, Mascardi () PrettyCLP 7 / 20

  14. CLP(FD) basics CLP(FD) basics Syntax Usual notions for program/constraint atom/literals. A primitive constraint is a constraint atom or its negation and a constraint is a conjunction of primitive constraints ( true denotes the empty conjunction) A goal CLP is of the form ← ¯ B , where ¯ B is a conjunction of program atoms and primitive constraints. A CLP rule is of the form A ← ¯ B where A is a program atom and ← ¯ B is a CLP goal. A CLP program is a set of CLP rules. Stalla, Zanucco, Dovier, Mascardi () PrettyCLP 8 / 20

  15. CLP(FD) basics CLP(FD) basics Syntax Usual notions for program/constraint atom/literals. A primitive constraint is a constraint atom or its negation and a constraint is a conjunction of primitive constraints ( true denotes the empty conjunction) A goal CLP is of the form ← ¯ B , where ¯ B is a conjunction of program atoms and primitive constraints. A CLP rule is of the form A ← ¯ B where A is a program atom and ← ¯ B is a CLP goal. A CLP program is a set of CLP rules. Operationally, conjunctions and sets are just lists Stalla, Zanucco, Dovier, Mascardi () PrettyCLP 8 / 20

  16. CLP(FD) basics CLP(FD) basics Semantics of a constraint Semantically, a constraint C on n variables X 1 , . . . , X n with domains D 1 , . . . , D n , respectively, is a relation on D 1 × · · · × D n . In CLP(FD) D i ’s are finite subsets of Z A solution for C is a mapping [ X 1 / d 1 , . . . , X n / d n ] such that � d 1 , . . . , d n � ∈ C . If there are no solutions, then C is inconsistent. Stalla, Zanucco, Dovier, Mascardi () PrettyCLP 9 / 20

  17. CLP(FD) basics CLP(FD) basics Semantics of a constraint Semantically, a constraint C on n variables X 1 , . . . , X n with domains D 1 , . . . , D n , respectively, is a relation on D 1 × · · · × D n . In CLP(FD) D i ’s are finite subsets of Z A solution for C is a mapping [ X 1 / d 1 , . . . , X n / d n ] such that � d 1 , . . . , d n � ∈ C . If there are no solutions, then C is inconsistent. The intended semantics of F C symbols (in this case, the arithmetical functions on integer numbers) is fulfilled. This allows to evaluate, e.g., X + 1 ≤ Y ∗ Y − 5 ∗ Z Stalla, Zanucco, Dovier, Mascardi () PrettyCLP 9 / 20

  18. CLP(FD) basics CLP(FD) basics Operational semantics It is parametric on the function solve that given a constraint C should detect whether C is satisfiable (consistent) in the constraint domain. During its computation, solve ( C ) might rewrite C to an equivalent simplified constraint. In practice, for complexity reasons, solve is an incomplete procedure, in the sense that instead of verifying consistency of the (entire) constraints, acts locally in each primitive constraint, removing some values in domains that cannot belong to any solution until a local property is satisfied. This phase is also called Constraint propagation Stalla, Zanucco, Dovier, Mascardi () PrettyCLP 10 / 20

  19. CLP(FD) basics CLP(FD) basics Why solve is incomplete? Let us consider the constraint X � = Y , X � = W , X � = Z , Y � = W , Y � = Z , W � = Z , where D X = D Y = D Z = D W = { 0 , 1 , 2 } . Although it is inconsistent, default options in Prolog implementations are such that it is left unaltered by solve and, therefore, inconsistency is not detected. Stalla, Zanucco, Dovier, Mascardi () PrettyCLP 11 / 20

  20. CLP(FD) basics CLP(FD) basics Why solve is incomplete? Let us consider the constraint X � = Y , X � = W , X � = Z , Y � = W , Y � = Z , W � = Z , where D X = D Y = D Z = D W = { 0 , 1 , 2 } . Although it is inconsistent, default options in Prolog implementations are such that it is left unaltered by solve and, therefore, inconsistency is not detected. It is the encoding of the 3-coloring problem of a graph Checking consistency of this class of con- straints is therefore NP-hard and a fast propagation algorithm can not check it (un- less P=NP). Stalla, Zanucco, Dovier, Mascardi () PrettyCLP 11 / 20

  21. CLP(FD) basics CLP(FD) basics State A state is a pair � G | C � where G is a CLP goal and C is a constraint (also known as the constraint store ). A state � G | C � is said to be: successful if G = true and solve ( C ) � = false . failing if either solve ( C ) = false or there are no clauses in P with the same predicate of the head of the selected atom in G . unsolved if G � = true and it is not failing. Stalla, Zanucco, Dovier, Mascardi () PrettyCLP 12 / 20

  22. CLP(FD) basics CLP(FD) basics Derivation Step Let � G 1 | C 1 � be an unsolved state, where G 1 = ← L 1 , . . . , L m , and P a program. A CLP-derivation step � G 1 | C 1 � ⇒ � G 2 | C 2 � is defined as follows: Let L i be the selected literal in G 1 (let us assume it is L 1 —as it happens in the implementation). Then � G 2 | C 2 � is obtained from S and P in one of the following ways: L 1 is a primitive constraint, C 2 = L 1 ∧ C 1 . If solve ( C 2 ) = false , then G 2 = ← false , otherwise G 2 = ← L 2 , . . . , L n . If L 1 = p ( t 1 , . . . , t n ) is a program atom, and p ( s 1 , . . . , s n ) ← ¯ B is a renaming of a clause of P then G 2 = ← t 1 = s 1 , . . . , t n = s n , ¯ B , L 2 , . . . , L n and C 2 = C 1 . Stalla, Zanucco, Dovier, Mascardi () PrettyCLP 13 / 20

  23. CLP(FD) basics CLP(FD) basics Derivation Step Let � G 1 | C 1 � be an unsolved state, where G 1 = ← L 1 , . . . , L m , and P a program. A CLP-derivation step � G 1 | C 1 � ⇒ � G 2 | C 2 � is defined as follows: Let L i be the selected literal in G 1 (let us assume it is L 1 —as it happens in the implementation). Then � G 2 | C 2 � is obtained from S and P in one of the following ways: L 1 is a primitive constraint, C 2 = L 1 ∧ C 1 . If solve ( C 2 ) = false , then G 2 = ← false , otherwise G 2 = ← L 2 , . . . , L n . If L 1 = p ( t 1 , . . . , t n ) is a program atom, and p ( s 1 , . . . , s n ) ← ¯ B is a renaming of a clause of P then G 2 = ← t 1 = s 1 , . . . , t n = s n , ¯ B , L 2 , . . . , L n and C 2 = C 1 . This is not what it is implemented by the various Prolog systems!!! Stalla, Zanucco, Dovier, Mascardi () PrettyCLP 13 / 20

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