phc-graph/test/test-graph-type.rkt
2017-01-17 19:12:51 +01:00

16 lines
460 B
Racket

#lang typed/racket
(require phc-adt
(lib "phc-graph/graph-type.hl.rkt"))
(adt-init)
(define-graph-type g1
[City [name : String]
[streets : (Listof Street)]
[citizens : (Listof Person)]]
[Street [name : String]
[houses : (Listof House)]]
[House [owner : Person]]
[Person [name : String]]
#:invariant City.citizens._ City.streets._.houses._.owner
#:invariant City.citizens._ City.streets._.houses._.owner)