syndicate-2017/racket/syndicate/examples/all-pairs-shortest-paths/all-pairs-shortest-paths3.rkt

40 lines
1.4 KiB
Racket

#lang syndicate
;; After Figure 1 in "Logic and lattices for distributed programming",
;; Conway et. al, UCB tech report, 2012
;;
;; Added path-seen set to ensure termination on input cycles.
(require racket/set)
(struct link (from to cost) #:prefab)
(struct path (from to seen cost) #:prefab)
(struct min-cost (from to cost) #:prefab)
(spawn (assert (link 1 3 -2))
(assert (link 2 1 4))
(assert (link 2 3 3))
(assert (link 3 4 2))
(assert (link 4 2 -1)))
(spawn (during (link $from $to $cost)
(assert (path from to (set from to) cost))))
(spawn (during (link $A $B $link-cost)
(during (path B $C $seen $path-cost)
(assert #:when (not (set-member? seen A))
(path A C (set-add seen A) (+ link-cost path-cost))))))
(spawn (during (path $from $to _ _)
(field [costs (set)] [least +inf.0])
(assert (min-cost from to (least)))
(on (asserted (path from to _ $cost))
(costs (set-add (costs) cost))
(least (min (least) cost)))
(on (retracted (path from to _ $cost))
(define new-costs (set-remove (costs) cost))
(costs new-costs)
(least (for/fold [(least +inf.0)] [(x new-costs)] (min x least))))))
(spawn (on (asserted (min-cost $from $to $cost))
(displayln (min-cost from to cost))))