network: Don't use make-network-from-functions in basic definitions.
This commit is contained in:
parent
11d75bcc89
commit
cfe710e6b2
1 changed files with 1 additions and 1 deletions
|
@ -192,7 +192,7 @@
|
|||
(and x1 (not x2)))))
|
||||
(define f2 (λ (s) (let ([x2 (hash-ref s 'x2)])
|
||||
(not x2))))
|
||||
(define bn (make-network-from-functions `((x1 . ,f1) (x2 . ,f2))))
|
||||
(define bn (hash 'x1 f1 'x2 f2))
|
||||
(define s1 (make-state '((x1 . #t) (x2 . #f))))
|
||||
(define new-s1 (update bn s1 '(x2 x1)))
|
||||
(define s2 (make-state '((x1 . #f) (x2 . #f))))
|
||||
|
|
Loading…
Reference in a new issue