#lang hyper-literate typed/racket #:no-auto-require @require[scribble-math scribble-enhanced/doc "notations.rkt" (for-label racket)] @title[#:style (with-html5 manual-doc-style) #:tag "graph-type" #:tag-prefix "phc-graph/graph-type"]{Declaring graph types} @(chunks-toc-prefix '("(lib phc-graph/scribblings/phc-graph-implementation.scrbl)" "phc-graph/graph-type")) @CHUNK[ (begin-for-syntax (define-syntax-class signature #:datum-literals (∈ ∋ ≡ ≢ ∉) #:literals (:) (pattern (name {~maybe #:∀ (tvar …)} (~and {~seq [nodeᵢ:id [fieldᵢⱼ:id : τ] …] …} {~seq [root-node . _] _ …}) {~seq #:invariant a {~and op {~or ∈ ∋ ≡ ≢ ∉}} b} … {~seq #:invariant p} …)))) (define-syntax/parse (define-graph-type . :signature) (define gi ) (local-require racket/pretty) #;(parameterize ([pretty-print-columns 188]) (pretty-print gi (current-output-port) 0)) #`(begin (define-syntax name #,gi)))] @chunk[ (graph-info #'name (syntax->list (if (attribute tvar) #'(tvar …) #'())) #'root-node (syntax->list #'(nodeᵢ …)) (make-immutable-hash (map cons (stx-map syntax-e #'(nodeᵢ …)) (stx-map (λ/syntax-case (nodeᵢ [fieldᵢⱼ τᵢⱼ] …) () ) #'([nodeᵢ [fieldᵢⱼ τᵢⱼ] …] …)))) (list->set (append (stx-map (λ/syntax-case (op a b) () ) #'([op a b] …)) (stx-map (λ/syntax-case p () ) #'(p …)))))] @chunk[ (node-info (meta-struct-predicate (check-remembered-node! #'(nodeᵢ fieldᵢⱼ …))) (syntax->list #'(fieldᵢⱼ …)) (make-immutable-hash (map cons (stx-map syntax-e #'(fieldᵢⱼ …)) (stx-map (λ/syntax-case (fieldᵢⱼ τᵢⱼ) () ) #'([fieldᵢⱼ τᵢⱼ] …)))) (check-remembered-node! #'(nodeᵢ fieldᵢⱼ …)) (meta-struct-constructor (check-remembered-tagged! #'(node-incompleteᵢ fieldᵢⱼ …))) (check-remembered-tagged! #'(node-incompleteᵢ fieldᵢⱼ …)))] @chunk[ (field-info #'τᵢⱼ)] @chunk[ (invariant-info #'predicateTODO #'witnessTODO)] @chunk[ (invariant-info #'predicateTODO #'witnessTODO)] @chunk[<*> (require racket/require phc-toolkit (lib "phc-adt/tagged-structure-low-level.hl.rkt") (for-syntax "graph-info.hl.rkt" phc-toolkit/untyped (subtract-in syntax/parse phc-graph/subtemplate) racket/set phc-graph/subtemplate-override)) (provide define-graph-type) ]