www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

phc-graph-implementation.scrbl (897B)


      1 #lang scribble/manual
      2 @require[@for-label[phc-graph
      3                     racket/base]]
      4 
      5 @title{Ph.C Graph library: Implementation}
      6 @author[@author+email["Suzanne Soy" "racket@suzanne.soy"]]
      7 
      8 This library is implemented using literate programming. The implementation
      9 details are presented in the following sections. The user documentation is in
     10 the @other-doc['(lib "phc-graph/scribblings/phc-graph.scrbl")] document.
     11 
     12 @(table-of-contents)
     13 
     14 @include-section[(submod "../traversal.hl.rkt" doc)]
     15 @include-section[(submod "../flexible-with2.hl.rkt" doc)]
     16 @include-section[(submod "../invariants-phantom.hl.rkt" doc)]
     17 @include-section[(submod "../graph-info.hl.rkt" doc)]
     18 @include-section[(submod "../graph-type.hl.rkt" doc)]
     19 @include-section[(submod "../graph.hl.rkt" doc)]
     20 @include-section[(submod "../main-draft.hl.rkt" doc)]
     21 @include-section[(submod "../flexible-with-generalized-ctor.hl.rkt" doc)]