networks: Make update accept any kind of sets of variables.

This commit is contained in:
Sergiu Ivanov 2020-02-23 12:10:27 +01:00
parent cbf949ba5a
commit f9191287e1
1 changed files with 2 additions and 2 deletions

View File

@ -10,13 +10,13 @@
;;; This model can generalise Boolean networks, TBANs, multivalued
;;; networks, etc.
(require "utils.rkt" graph)
(require "utils.rkt" "generic.rkt" graph)
(provide
;; Structures
(struct-out dynamics)
;; Functions
(contract-out [update (-> network? state? (listof variable?) state?)]
(contract-out [update (-> network? state? (set/c variable? #:kind 'dont-care) state?)]
[make-state (-> (listof (cons/c symbol? any/c)) state?)]
[make-network-from-functions (-> (listof (cons/c symbol? update-function/c)) network?)]
[update-function-form->update-function (-> update-function-form? update-function/c)]