dds/dynamics.rkt

38 lines
1.1 KiB
Racket
Raw Normal View History

2022-07-06 00:00:17 +02:00
#lang typed/racket
2022-08-23 10:17:58 +02:00
(require "utils.rkt" typed/graph)
(provide dds%)
(define dds%
(class object%
#:forall (State Modality)
(super-new)
(: step (-> State (Listof State)))
2022-09-02 16:32:52 +02:00
(define/public (step st)
(map (inst cdr Modality State) (step/annotated st)))
2022-08-23 10:17:58 +02:00
(: step/annotated (-> State (Listof (Pairof Modality State))))
(define/abstract/error (step/annotated st))
(: step* (-> (Listof State) (Listof State)))
2022-09-10 17:46:26 +02:00
(define/public (step* sts)
(remove-duplicates
(apply append
(for/list : (Listof (Listof State)) ([s sts])
(step s)))))
2022-08-23 10:17:58 +02:00
(: build-state-graph (-> (Listof State) Graph))
(define/abstract/error (build-state-graph sts))
(: build-state-graph/annotated (-> (Listof State) Graph))
(define/abstract/error (build-state-graph/annotated sts))
(: build-state-graph* (-> (Listof State) (U Integer 'full) Graph))
2022-08-23 10:17:58 +02:00
(define/abstract/error (build-state-graph* sts nsteps))
(: build-state-graph*/annotated (-> (Listof State) (U Integer 'full) Graph))
2022-08-23 10:17:58 +02:00
(define/abstract/error (build-state-graph*/annotated nsteps sts))
))