small cleanup

This commit is contained in:
Sam Caldwell 2019-06-17 13:18:43 -04:00
parent c40b773282
commit fa8822e40d
1 changed files with 3 additions and 6 deletions

View File

@ -122,14 +122,11 @@
[states (hash)])
(match work-list
[(cons current more)
(define all-txns
(for/list ([nm (in-set current)])
(hash-ref roles# nm)))
(define agg-txn
(for/fold ([agg (hash)])
([txns (in-list all-txns)])
(hash-union agg txns
#:combine combine-effect-sets)))
([nm (in-set current)])
(define txns (hash-ref roles# nm))
(hash-union agg txns #:combine combine-effect-sets)))
(define transitions
(for/hash ([(D effs) (in-hash agg-txn)]
#:when (external-evt? D))