networks: Add a copy of lists-transpose.
I will remove this copy when I will have migrated networks to Typed Racket.
This commit is contained in:
parent
2af8d9276b
commit
ec50395cb0
1 changed files with 8 additions and 0 deletions
|
@ -951,6 +951,14 @@
|
|||
;;; Constructing functions and networks
|
||||
;;; ===================================
|
||||
|
||||
;;; TODO 2022-02-13: Remove when this module is completely migrated to
|
||||
;;; Typed Racket.
|
||||
;;;
|
||||
;;; Typed Racket cannot generate the contract from the type of
|
||||
;;; lists-transpose in utils. This is a copy of lists-transpose.
|
||||
(define (lists-transpose lists)
|
||||
(sequence->list (in-values-sequence (apply in-parallel lists))))
|
||||
|
||||
;;; Given a table like the one produced by tabulate-network,
|
||||
;;; constructs a Boolean network having this behaviour. If headers is
|
||||
;;; #t, considers that the first element of the list are the headers
|
||||
|
|
Loading…
Reference in a new issue