the abella interactive theorem prover system description
play

The Abella Interactive Theorem Prover (System Description) Andrew - PowerPoint PPT Presentation

The Abella Interactive Theorem Prover (System Description) Andrew Gacek Department of Computer Science and Engineering University of Minnesota IJCAR 08 August 12, 2008 Characteristics of the Abella System Abella is a theorem proving


  1. The Abella Interactive Theorem Prover (System Description) Andrew Gacek Department of Computer Science and Engineering University of Minnesota IJCAR ’08 August 12, 2008

  2. Characteristics of the Abella System Abella is a theorem proving system that ◮ is geared towards reasoning about formal systems specified via structural rules ◮ uses higher-order abstract syntax in a fundamental way ◮ based on a two-level logic approach ◮ (executable) specification logic for describing formal systems ◮ meta-logic for reasoning about specification logic descriptions ◮ exploits key specification logic properties as lemmas in the meta-logic

  3. Formal Systems Specified via Structural Rules x : a ∈ Γ Γ ⊢ x : a Γ ⊢ t 1 : a → b Γ ⊢ t 2 : a Γ ⊢ ( t 1 t 2 ) : b Γ , x : a ⊢ t : b Γ ⊢ ( λ x : a . t ) : a → b x / ∈ dom (Γ)

  4. Formal Systems Specified via Structural Rules x : a ∈ Γ Γ ⊢ x : a Γ ⊢ t 1 : a → b Γ ⊢ t 2 : a Γ ⊢ ( t 1 t 2 ) : b Γ , x : a ⊢ t : b Γ ⊢ ( λ x : a . t ) : a → b x / ∈ dom (Γ) Type uniqueness If Γ ⊢ t : a and Γ ⊢ t : b then a = b Type preservation If Γ , x : a ⊢ t 1 : b and Γ ⊢ t 2 : a then Γ ⊢ t 1 [ x := t 2 ] : b

  5. Higher-order Abstract Syntax Higher-order abstract syntax uses meta-level abstraction to represent object-level binding x − → ( var x ) ( t 1 t 2 ) − → ( app t 1 t 2 ) λ x : a . t − → ( abs a ( λ x . t ))

  6. Higher-order Abstract Syntax Higher-order abstract syntax uses meta-level abstraction to represent object-level binding x − → ( var x ) ( t 1 t 2 ) − → ( app t 1 t 2 ) λ x : a . t − → ( abs a ( λ x . t )) Benefits ◮ α -equivalence completely handled by the meta-level ( abs a ( λ x . t )) = ( abs a ( λ y . t [ x := y ]))

  7. Higher-order Abstract Syntax Higher-order abstract syntax uses meta-level abstraction to represent object-level binding x − → ( var x ) ( t 1 t 2 ) − → ( app t 1 t 2 ) λ x : a . t − → ( abs a ( λ x . t )) Benefits ◮ α -equivalence completely handled by the meta-level ( abs a ( λ x . t )) = ( abs a ( λ y . t [ x := y ])) ◮ capture-avoiding substitution realized via β -reduction ( app ( abs a t 1 ) t 2 ) = ⇒ ( t 1 t 2 )

  8. Two-level Logic Approach Advocated by McDowell, Miller, and Tiu Structure ◮ specification logic for describing formal systems ◮ meta-logic for reasoning about specification logic descriptions

  9. Two-level Logic Approach Advocated by McDowell, Miller, and Tiu Structure ◮ specification logic for describing formal systems ◮ meta-logic for reasoning about specification logic descriptions Some of the benefits ◮ clean separation between specification and reasoning so features of each logic can be tailored to needs ( e.g. , executable vs rich) ◮ allows for different specification logics

  10. Design of the Specification Logic The specification logic should ◮ support rule-based descriptions

  11. Design of the Specification Logic The specification logic should ◮ support rule-based descriptions ◮ provide support for higher-order abstract syntax

  12. Design of the Specification Logic The specification logic should ◮ support rule-based descriptions ◮ provide support for higher-order abstract syntax permit explicit representations of binding

  13. Design of the Specification Logic The specification logic should ◮ support rule-based descriptions ◮ provide support for higher-order abstract syntax permit explicit representations of binding have mechanisms for logically analyzing binding

  14. Design of the Specification Logic The specification logic should ◮ support rule-based descriptions ◮ provide support for higher-order abstract syntax permit explicit representations of binding have mechanisms for logically analyzing binding contain declarative means for recursion over binding structure

  15. Design of the Specification Logic The specification logic should ◮ support rule-based descriptions ◮ provide support for higher-order abstract syntax permit explicit representations of binding have mechanisms for logically analyzing binding contain declarative means for recursion over binding structure ◮ be executable

  16. Design of the Specification Logic The specification logic should ◮ support rule-based descriptions ◮ provide support for higher-order abstract syntax permit explicit representations of binding have mechanisms for logically analyzing binding contain declarative means for recursion over binding structure ◮ be executable Abella uses second-order hereditary Harrop formulas

  17. Design of the Specification Logic The specification logic should ◮ support rule-based descriptions Horn clause like descriptions of relations ◮ provide support for higher-order abstract syntax permit explicit representations of binding have mechanisms for logically analyzing binding contain declarative means for recursion over binding structure ◮ be executable Abella uses second-order hereditary Harrop formulas

  18. Design of the Specification Logic The specification logic should ◮ support rule-based descriptions Horn clause like descriptions of relations ◮ provide support for higher-order abstract syntax permit explicit representations of binding lambda terms as data structures have mechanisms for logically analyzing binding contain declarative means for recursion over binding structure ◮ be executable Abella uses second-order hereditary Harrop formulas

  19. Design of the Specification Logic The specification logic should ◮ support rule-based descriptions Horn clause like descriptions of relations ◮ provide support for higher-order abstract syntax permit explicit representations of binding lambda terms as data structures have mechanisms for logically analyzing binding unification over lambda conversion rules contain declarative means for recursion over binding structure ◮ be executable Abella uses second-order hereditary Harrop formulas

  20. Design of the Specification Logic The specification logic should ◮ support rule-based descriptions Horn clause like descriptions of relations ◮ provide support for higher-order abstract syntax permit explicit representations of binding lambda terms as data structures have mechanisms for logically analyzing binding unification over lambda conversion rules contain declarative means for recursion over binding structure generic goals to move object level binding to the meta level ◮ be executable Abella uses second-order hereditary Harrop formulas

  21. Design of the Specification Logic The specification logic should ◮ support rule-based descriptions Horn clause like descriptions of relations ◮ provide support for higher-order abstract syntax permit explicit representations of binding lambda terms as data structures have mechanisms for logically analyzing binding unification over lambda conversion rules contain declarative means for recursion over binding structure generic goals to move object level binding to the meta level ◮ be executable subset of λ Prolog which has an efficient implementation http://teyjus.cs.umn.edu Abella uses second-order hereditary Harrop formulas

  22. Design of the Meta-logic The meta-logic should ◮ be able to encode the specification logic

  23. Design of the Meta-logic The meta-logic should ◮ be able to encode the specification logic ◮ allow descriptions of properties of specifications

  24. Design of the Meta-logic The meta-logic should ◮ be able to encode the specification logic ◮ allow descriptions of properties of specifications ◮ provide mechanisms for reasoning about the specification logic treatment of binding constructs

  25. Design of the Meta-logic The meta-logic should ◮ be able to encode the specification logic ◮ allow descriptions of properties of specifications ◮ provide mechanisms for reasoning about the specification logic treatment of binding constructs ◮ support inductive arguments over the structure of specifications

  26. Design of the Meta-logic The meta-logic should ◮ be able to encode the specification logic ◮ allow descriptions of properties of specifications ◮ provide mechanisms for reasoning about the specification logic treatment of binding constructs ◮ support inductive arguments over the structure of specifications Abella uses the logic G [LICS08] as a meta-logic

  27. Design of the Meta-logic The meta-logic should ◮ be able to encode the specification logic atomic judgments unraveled by definitions ◮ allow descriptions of properties of specifications ◮ provide mechanisms for reasoning about the specification logic treatment of binding constructs ◮ support inductive arguments over the structure of specifications Abella uses the logic G [LICS08] as a meta-logic

  28. Design of the Meta-logic The meta-logic should ◮ be able to encode the specification logic atomic judgments unraveled by definitions ◮ allow descriptions of properties of specifications atomic judgments can be combined using meta-logic connectives ◮ provide mechanisms for reasoning about the specification logic treatment of binding constructs ◮ support inductive arguments over the structure of specifications Abella uses the logic G [LICS08] as a meta-logic

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