Denotational Semantics in Agda
Scheme.All
Initializing search
    pdmosses/xds-agda
    • About
    • Meta-notation
    • ULC
    • PCF
    • Scheme
    pdmosses/xds-agda
    • About
    • Meta-notation
      • Untyped λ-calculus
      • ULC.All
      • ULC.Variables
      • ULC.Terms
      • ULC.Domains
      • ULC.Environments
      • ULC.Semantics
      • ULC.Checks
      • PCF (Plotkin 1977)
      • PCF.All
      • PCF.Domain Notation
      • PCF.Types
      • PCF.Constants
      • PCF.Variables
      • PCF.Terms
      • PCF.Environments
      • PCF.Checks
      • Core Scheme (R5RS)
      • Scheme.All
      • Scheme.Domain Notation
      • Scheme.Abstract Syntax
      • Scheme.Domain Equations
      • Scheme.Auxiliary Functions
      • Scheme.Semantic Functions

    Scheme.All

    
    {-  Agda formalization of the denotational semantics of Scheme R5
    
        Based on a plain text copy of §7.2 in [R5RS]
    
        [R5RS]: https://standards.scheme.org/official/r5rs.pdf
    -}
    
    module Scheme.All where
    
    import Scheme.Domain-Notation
    import Scheme.Abstract-Syntax
    import Scheme.Domain-Equations
    import Scheme.Auxiliary-Functions
    import Scheme.Semantic-Functions
    
    
    Made with Material for MkDocs