Revert "BREAKING: Make domains part of the network."

This reverts commit f414ae8966.
This commit is contained in:
Sergiu Ivanov 2020-11-12 01:03:48 +01:00
parent f414ae8966
commit 5fd1e5cb5b

View File

@ -14,12 +14,10 @@
graph racket/random racket/hash)
(provide
(struct-out dynamics)
;; Structures
(struct-out dynamics)
(contract-out [struct tbf/state ([weights (hash/c variable? number?)]
[threshold number?])]
[struct network ([functions (hash/c variable? procedure?)]
[domains domain-mapping/c])])
[threshold number?])])
;; Functions
(contract-out [update (-> network? state? (set/c variable? #:kind 'dont-care) state?)]
[make-state (-> (listof (cons/c symbol? any/c)) state?)]
@ -168,9 +166,8 @@
;;; state.
(define update-function/c (-> state? any/c))
;;; A network is a mapping from its variables to its update functions,
;;; together with the domains of the variables.
(struct network (functions domains))
;;; A network is a mapping from its variables to its update functions.
(define network? (hash/c variable? procedure?))
;;; Given a state s updates all the variables from xs. This
;;; corresponds to a parallel mode.