2020-11-29 00:28:46 +01:00
|
|
|
|
#lang scribble/manual
|
2020-11-29 23:07:40 +01:00
|
|
|
|
@(require scribble/example racket/sandbox
|
2022-02-03 00:09:11 +01:00
|
|
|
|
(for-label typed/racket/base graph
|
2022-03-05 13:41:40 +01:00
|
|
|
|
"../utils.rkt"
|
2022-02-03 16:40:02 +01:00
|
|
|
|
(only-in typed/graph Graph)
|
2022-03-05 00:24:02 +01:00
|
|
|
|
(only-in racket/set set)
|
|
|
|
|
(only-in racket/stream stream->list stream-take)))
|
2020-11-29 00:28:46 +01:00
|
|
|
|
|
|
|
|
|
@title[#:tag "utils"]{dds/utils: Various Utilities}
|
|
|
|
|
|
2020-11-29 21:41:00 +01:00
|
|
|
|
@defmodule[dds/utils]
|
|
|
|
|
|
|
|
|
|
This module defines miscellaneous utilities, supporting the other modules of
|
|
|
|
|
the package: evaluating sexps, manipulating lists,
|
|
|
|
|
@hyperlink["https://orgmode.org/"]{Org-mode} interoperability, etc.
|
|
|
|
|
|
2020-11-29 23:07:40 +01:00
|
|
|
|
@(define utils-evaluator
|
|
|
|
|
(parameterize ([sandbox-output 'string]
|
|
|
|
|
[sandbox-error-output 'string]
|
|
|
|
|
[sandbox-memory-limit 50])
|
2022-03-05 13:41:40 +01:00
|
|
|
|
(make-evaluator 'typed/racket #:requires '("utils.rkt"))))
|
2020-11-29 23:07:40 +01:00
|
|
|
|
|
2022-01-16 21:00:41 +01:00
|
|
|
|
@section{Base types}
|
|
|
|
|
|
|
|
|
|
@defidform[Variable]{
|
|
|
|
|
|
|
|
|
|
Any Racket symbol. Designates a variable in a discrete dynamical network.
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@defform[(VariableMapping A)]{
|
|
|
|
|
|
|
|
|
|
An immutable mapping (a hash table) assigning elements of type @racket[A] to
|
|
|
|
|
the variables.
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-29 21:41:00 +01:00
|
|
|
|
@section{Hashtable injection}
|
|
|
|
|
|
|
|
|
|
This section defines some utilities to streamline the usage of hash tables
|
|
|
|
|
mapping symbols to values. The goal is essentially to avoid having to write
|
2020-11-29 23:07:40 +01:00
|
|
|
|
explicit @racket[hash-ref] calls.
|
|
|
|
|
|
2022-01-16 23:10:08 +01:00
|
|
|
|
@defproc[(eval-with [ht (VariableMapping Any)] [expr Any]) AnyValues]{
|
2020-11-29 23:07:40 +01:00
|
|
|
|
|
|
|
|
|
Temporarily injects the mappings from the given hash table as bindings in
|
|
|
|
|
a namespace including @racket[racket/base] and then evaluates the expression.
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(let ([ht (hash 'a 1 'b 1)])
|
|
|
|
|
(eval-with ht '(+ b a 1)))
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
The local bindings from the current lexical scope are not
|
|
|
|
|
conserved. Therefore, the following outputs an error about a
|
|
|
|
|
missing identifier:
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(eval:error
|
|
|
|
|
(let ([ht (hash 'a 1 'b 1)]
|
|
|
|
|
[z 1])
|
|
|
|
|
(eval-with ht '(+ b z a 1)))
|
|
|
|
|
)]}
|
2020-11-29 21:41:00 +01:00
|
|
|
|
|
2022-01-16 23:10:08 +01:00
|
|
|
|
@defproc[(eval1-with [ht (VariableMapping Any)] [expr Any]) Any]{
|
|
|
|
|
|
|
|
|
|
Like @racket[eval-with], but returns only the first value computed by
|
|
|
|
|
@racket[expr].
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(let ([ht (hash 'a 1 'b 1)])
|
|
|
|
|
(eval1-with ht '(+ b a 1)))
|
|
|
|
|
]}
|
|
|
|
|
|
2022-01-19 00:32:45 +01:00
|
|
|
|
@defform[(auto-hash-ref/explicit stx)
|
|
|
|
|
#:contracts ([stx (VariableMapping A)])]{
|
|
|
|
|
|
|
|
|
|
Given a @racket[VariableMapping] and a sequence of symbols, binds these symbols
|
|
|
|
|
to the values they are associated with in the hash table, then puts the body in
|
|
|
|
|
the context of these bindings.
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(define env #hash((a . 1) (b . 2)))
|
|
|
|
|
(auto-hash-ref/explicit (env a b) (+ a (* 2 b)))
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
Note that only one expression can be supplied in the body.
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@defform[(auto-hash-ref/: stx)
|
|
|
|
|
#:contracts ([stx (VariableMapping A)])]{
|
|
|
|
|
|
|
|
|
|
Given an expression and a @racket[VariableMapping], looks up the symbols with
|
|
|
|
|
a leading semicolon and binds them to the value they are associated with in the
|
|
|
|
|
hash table.
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(define env #hash((a . 1) (b . 2)))
|
|
|
|
|
(auto-hash-ref/: env (+ :a (* 2 :b)))
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
Thus the symbol @racket[:a] is matched to the key @racket['a] in the
|
|
|
|
|
hash table.
|
|
|
|
|
|
|
|
|
|
Note that only one expression can be supplied in the body.
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-29 21:41:00 +01:00
|
|
|
|
@section{Analysis of quoted expressions}
|
|
|
|
|
|
2022-01-19 00:40:41 +01:00
|
|
|
|
@defproc[(extract-symbols [form Any]) (Listof Symbol)]{
|
|
|
|
|
|
|
|
|
|
Produces a list of symbols appearing in the quoted expression
|
|
|
|
|
passed in the first argument.
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(extract-symbols '(1 (2 3) x (y z 3)))
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-29 21:41:00 +01:00
|
|
|
|
@section{Org-mode interoperability}
|
|
|
|
|
|
|
|
|
|
Org-mode supports laying out the output of code blocks as tables, which is very
|
|
|
|
|
practical for various variable mappings (e.g., states). However, when the hash
|
|
|
|
|
table maps variables to lists, Org-mode will create a column per list element,
|
|
|
|
|
which may or may not be the desired effect. This section defines some
|
|
|
|
|
utilities for nicer interoperation with Org-mode tables. It also defines some
|
|
|
|
|
shortcuts to reduce the number of words to type when using dds with Org-mode.
|
|
|
|
|
See
|
|
|
|
|
@hyperlink["https://git.marvid.fr/scolobb/dds/src/branch/master/example/example.org"]{example.org}
|
|
|
|
|
for examples of usage.
|
|
|
|
|
|
2022-01-20 19:58:06 +01:00
|
|
|
|
@defproc[(any->string [x Any]) String]{
|
|
|
|
|
|
|
|
|
|
Converts any value to string by calling @racket[display] on it and capturing
|
|
|
|
|
the result in a string.
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(any->string '(a 1 (x y)))
|
|
|
|
|
]}
|
|
|
|
|
|
2022-01-23 13:47:36 +01:00
|
|
|
|
@defproc[(stringify-variable-mapping [ht (VariableMapping Any)]) (VariableMapping String)]{
|
|
|
|
|
|
|
|
|
|
Converts all the values of a @racket[VariableMapping] to string.
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(stringify-variable-mapping (hash 'a '(and a b) 'b '(not b)))
|
|
|
|
|
]}
|
|
|
|
|
|
2022-01-23 13:53:41 +01:00
|
|
|
|
@defproc[(string->any [str String]) Any]{
|
|
|
|
|
|
|
|
|
|
Reads any value from string.
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(string->any "(or b (not a))")
|
|
|
|
|
]}
|
|
|
|
|
|
2022-01-23 15:50:06 +01:00
|
|
|
|
@defproc[(map-sexp [func (-> Any Any)] [sexp Any]) Any]{
|
|
|
|
|
|
|
|
|
|
Given a @racket[Sexp], applies the @racket[func] to any object which is not
|
|
|
|
|
a list.
|
|
|
|
|
|
|
|
|
|
@racket[map-sexp] will not check whether @racket[func] is indeed applicable to
|
|
|
|
|
every non-list element of @racket[sexp]. If this is not the case, a contract
|
|
|
|
|
violation for func will be generated.
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(map-sexp (λ (x) (add1 (cast x Number))) '(1 2 (4 10) 3))
|
|
|
|
|
]}
|
|
|
|
|
|
2022-01-23 15:57:50 +01:00
|
|
|
|
@defproc*[([(read-org-sexp [str String]) Any]
|
|
|
|
|
[(unorg [str String]) Any])]{
|
|
|
|
|
|
|
|
|
|
Reads a @racket[sexp] from a string produced by Org-mode for a named table.
|
|
|
|
|
|
|
|
|
|
@racket[unorg] is a shortcut for @racket[read-org-sexp].
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(unorg "(#t \"#t\" \"#t \" '(1 2 \"#f\"))")
|
|
|
|
|
]}
|
|
|
|
|
|
2022-01-25 00:46:12 +01:00
|
|
|
|
@defform[(GeneralPair A B)]{
|
|
|
|
|
|
|
|
|
|
A @racket[(Pair A B)] or a @racket[(List A B)].
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@defproc[(unstringify-pairs [pairs (Listof (GeneralPair String Any))])
|
|
|
|
|
(Listof (GeneralPair Symbol Any))]{
|
|
|
|
|
|
|
|
|
|
Given a list of pairs of strings and some other values (possibly strings),
|
|
|
|
|
converts the first element of each pair to a string, and reads the second
|
|
|
|
|
element with @racket[string->any] or keeps it as is if it is not a string.
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(unstringify-pairs '(("a" . 1) ("b" . "(and a (not b))")))
|
|
|
|
|
]}
|
|
|
|
|
|
2022-01-27 21:10:13 +01:00
|
|
|
|
@defproc*[([(read-org-variable-mapping [str String]) (VariableMapping Any)]
|
|
|
|
|
[(unorgv [str String]) (VariableMapping Any)])]{
|
|
|
|
|
|
|
|
|
|
Reads a @racket[VariableMapping] from a string, such as the one which Org-mode
|
|
|
|
|
produces from tables.
|
|
|
|
|
|
|
|
|
|
@racket[unorgv] is a synonym of @racket[read-org-variable-mapping].
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(read-org-variable-mapping
|
|
|
|
|
"((\"a\" . \"(and a b)\") (\"b\" . \"(or b (not a))\"))")
|
|
|
|
|
]}
|
|
|
|
|
|
2022-02-03 10:48:51 +01:00
|
|
|
|
@defproc[(read-symbol-list (str String)) (Listof Symbol)]{
|
|
|
|
|
|
|
|
|
|
Reads a list of symbols from a string.
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(read-symbol-list "a b c")
|
|
|
|
|
]}
|
|
|
|
|
|
2022-02-03 10:55:34 +01:00
|
|
|
|
@defproc[(drop-first-last (str String)) String]{
|
|
|
|
|
|
|
|
|
|
Removes the first and the last symbol of a given string.
|
|
|
|
|
|
|
|
|
|
Useful for removing the parentheses in string representations of lists.
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(drop-first-last "(a b)")
|
|
|
|
|
]}
|
|
|
|
|
|
2022-02-03 16:40:02 +01:00
|
|
|
|
@defproc[(list-sets->list-strings (lst (Listof (Setof Any)))) (Listof String)]{
|
|
|
|
|
|
|
|
|
|
Converts a list of sets of symbols to a list of strings containing
|
|
|
|
|
those symbols.
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(list-sets->list-strings (list (set 'x 'y) (set 'z) (set) (set 't)))
|
|
|
|
|
]}
|
|
|
|
|
|
2022-02-04 00:08:22 +01:00
|
|
|
|
@section{Pretty printing}
|
|
|
|
|
|
2022-02-03 23:56:28 +01:00
|
|
|
|
@defproc[(pretty-print-set (s (Setof Any))) String]{
|
|
|
|
|
|
|
|
|
|
Pretty prints a set by listing its elements in alphabetic order.
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(pretty-print-set (set 'a 'b 1))
|
|
|
|
|
]}
|
|
|
|
|
|
2022-02-04 00:06:19 +01:00
|
|
|
|
@defproc[(pretty-print-set-sets (ms (Setof (Setof Any)))) String]{
|
|
|
|
|
|
|
|
|
|
Pretty-prints a set of sets of symbols.
|
|
|
|
|
|
|
|
|
|
Typically used for pretty-printing the annotations on the edges of
|
|
|
|
|
a state graph.
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(pretty-print-set-sets (set (set 'a 'b) (set 'c)))
|
|
|
|
|
]}
|
|
|
|
|
|
2022-02-04 00:09:39 +01:00
|
|
|
|
@section{Additional graph utilities}
|
2022-02-08 00:10:49 +01:00
|
|
|
|
|
|
|
|
|
All examples in this section depend on @racket[typed/graph]:
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(require typed/graph)
|
|
|
|
|
]
|
|
|
|
|
|
2022-02-04 00:09:39 +01:00
|
|
|
|
@defproc[(dotit [graph Graph]) Void]{
|
|
|
|
|
|
2022-02-06 23:50:40 +01:00
|
|
|
|
Typesets the graph via @racket[graphviz] and @racket[display]s it.
|
2022-02-04 00:09:39 +01:00
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(dotit (weighted-graph/directed '((1 a b) (2 b c))))
|
|
|
|
|
]}
|
|
|
|
|
|
2022-02-06 23:44:03 +01:00
|
|
|
|
@defproc[(update-vertices/unweighted [graph Graph] [func (-> Any Any)]) Graph]{
|
|
|
|
|
|
|
|
|
|
Applies a transformation to every vertex in the unweighted graph and returns
|
|
|
|
|
the new graph.
|
|
|
|
|
|
|
|
|
|
If the transformation function maps two vertices to the same values, these
|
|
|
|
|
vertices will be merged in the resulting graph. The transformation function
|
|
|
|
|
may be called multiple times for the same vertex.
|
|
|
|
|
|
|
|
|
|
This function does not rely on @racket[rename-vertex!], so it can be used to
|
|
|
|
|
permute vertex labels.
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(define g (directed-graph '((a b) (b c))))
|
|
|
|
|
(define (double-labels [x : Any])
|
|
|
|
|
(define x-str (symbol->string (cast x Symbol)))
|
|
|
|
|
(string->symbol (string-append x-str x-str)))
|
|
|
|
|
(dotit (update-vertices/unweighted g double-labels))
|
|
|
|
|
]}
|
|
|
|
|
|
2022-02-08 00:08:42 +01:00
|
|
|
|
@defproc[(update-graph [graph Graph]
|
|
|
|
|
[#:v-func v-func (-> Any Any) identity]
|
|
|
|
|
[#:e-func e-func (-> Any Any) identity])
|
|
|
|
|
Graph]{
|
|
|
|
|
|
|
|
|
|
Given a (directed) graph, apply the transformation @racket[v-func] to every
|
|
|
|
|
vertex label and, if the graph is a weighted graph, the transformation
|
|
|
|
|
@racket[e-func] to every edge label. Both transformations default to identity
|
|
|
|
|
functions. If @racket[graph] is an weighted graph, the result is a weighted
|
|
|
|
|
graph. If @racket[graph] is an unweighted graph, the result is an
|
|
|
|
|
unweighted graph.
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(define g (weighted-graph/directed '((10 a b) (11 b c))))
|
|
|
|
|
(define (double-labels [x : Any])
|
|
|
|
|
(define x-str (symbol->string (cast x Symbol)))
|
|
|
|
|
(string->symbol (string-append x-str x-str)))
|
|
|
|
|
(define (double-edges [x : Any])
|
|
|
|
|
(* 2 (cast x Number)))
|
|
|
|
|
(dotit (update-graph g #:v-func double-labels #:e-func double-edges))
|
|
|
|
|
]}
|
2022-02-06 23:44:03 +01:00
|
|
|
|
|
2020-11-29 21:41:00 +01:00
|
|
|
|
@section{Additional list and hash map utilities}
|
|
|
|
|
|
2022-02-10 00:12:50 +01:00
|
|
|
|
@defproc[(collect-by-key [keys (Listof a)] [vals (Listof b)])
|
|
|
|
|
(Values (Listof a) (Listof (Listof b)))]{
|
2022-02-09 01:07:37 +01:00
|
|
|
|
|
|
|
|
|
Given a list of keys and the corresponding values, collects all the values
|
|
|
|
|
associated to any given key and returns a list of keys without duplicates, and
|
|
|
|
|
a list containing the corresponding list of values.
|
|
|
|
|
|
|
|
|
|
If @racket[keys] can be treated as edges (i.e. pairs of vertices), the results
|
|
|
|
|
produced by this function are suitable for graph constructors.
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(collect-by-key '(a b a) '(1 2 3))
|
|
|
|
|
]}
|
|
|
|
|
|
2022-02-10 00:12:50 +01:00
|
|
|
|
@defproc[(collect-by-key/sets [keys (Listof a)] [vals (Listof b)])
|
|
|
|
|
(Values (Listof a) (Listof (Setof b)))]{
|
2022-02-09 23:55:20 +01:00
|
|
|
|
|
|
|
|
|
Like @racket[collect-by-key], but produce a list of sets instead of a list
|
|
|
|
|
of lists.
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(collect-by-key/sets '(a b a) '(1 2 3))
|
|
|
|
|
]}
|
|
|
|
|
|
2022-02-10 00:08:49 +01:00
|
|
|
|
@defproc[(ht-values/list->set [ht (HashTable a (Listof b))])
|
|
|
|
|
(HashTable a (Setof b))]{
|
|
|
|
|
|
|
|
|
|
Converts the values of a hash table from lists to sets.
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(ht-values/list->set #hash((a . (1 1))))
|
|
|
|
|
]}
|
|
|
|
|
|
2022-02-10 23:37:40 +01:00
|
|
|
|
@defproc[(hash->list/ordered [ht (HashTable a b)])
|
|
|
|
|
(Listof (Pairof a b))]{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Returns the key-value pairs of a given hash table in the order in which the
|
|
|
|
|
hash table orders them for @racket[hash-map].
|
|
|
|
|
|
2022-03-05 13:44:48 +01:00
|
|
|
|
@bold{TODO:} Remove after Typed Racket has caught up with Racket 8.4, in which
|
|
|
|
|
@racket[hash->list] gets a new optional argument @racket[try-order?].
|
2022-02-10 23:37:40 +01:00
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(hash->list/ordered #hash((b . 1) (a . 1)))
|
|
|
|
|
]}
|
2022-02-09 23:55:20 +01:00
|
|
|
|
|
2022-02-11 00:01:07 +01:00
|
|
|
|
@defproc[(multi-split-at [lists (Listof (Listof a))]
|
|
|
|
|
[pos Integer])
|
|
|
|
|
(Values (Listof (Listof a)) (Listof (Listof a)))]{
|
|
|
|
|
|
|
|
|
|
Given a list of lists, splits every single list at the given position, and then
|
|
|
|
|
returns two lists of lists: one consisting of the first halves, and the one
|
|
|
|
|
consisting of the second halves.
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(multi-split-at '((1 2 3) (a b c)) 2)
|
|
|
|
|
]}
|
|
|
|
|
|
2022-02-13 19:33:04 +01:00
|
|
|
|
@defproc[(lists-transpose [lists (List (Listof a) ... a)])
|
|
|
|
|
(Listof (List a ... a))]{
|
|
|
|
|
|
|
|
|
|
Transposes a list of lists. The length of the resulting list is the length of
|
|
|
|
|
the shortest list in @racket[lists].
|
|
|
|
|
|
|
|
|
|
This function is essentially @racket[in-parallel], wrapped in
|
|
|
|
|
a couple conversions.
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(lists-transpose '((a b) (1 2)))
|
|
|
|
|
(lists-transpose '((a b) (1 2 3) (#t)))
|
|
|
|
|
]}
|
|
|
|
|
|
2022-03-04 18:12:19 +01:00
|
|
|
|
@section{Randomness}
|
|
|
|
|
|
2022-02-15 00:14:52 +01:00
|
|
|
|
@defproc*[([(in-random) (Sequenceof Flonum)]
|
|
|
|
|
[(in-random [k Integer]) (Sequenceof Nonnegative-Fixnum)]
|
|
|
|
|
[(in-random [min Integer] [max Integer]) (Sequenceof Nonnegative-Fixnum)])]{
|
|
|
|
|
|
|
|
|
|
Generates a stream of (inexact) random numbers. The meaning of the arguments
|
|
|
|
|
is the same as for the function @racket[random]:
|
|
|
|
|
|
|
|
|
|
@itemlist[
|
|
|
|
|
|
|
|
|
|
@item{@racket[(in-random)] — a stream of random inexact numbers between
|
|
|
|
|
0 and 1,}
|
|
|
|
|
|
|
|
|
|
@item{@racket[(in-random k)] — a stream of random exact integers in the range
|
|
|
|
|
@racket[0] to @racket[k]-1.}
|
|
|
|
|
|
|
|
|
|
@item{@racket[(in-random min max)] — a stream of random exact integers the
|
|
|
|
|
range @racket[min] to @racket[max]-1.}
|
|
|
|
|
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(require typed/racket/stream)
|
|
|
|
|
(stream->list (stream-take (in-random) 5))
|
|
|
|
|
(stream->list (stream-take (in-random 10) 5))
|
|
|
|
|
(stream->list (stream-take (in-random 5 10) 5))
|
|
|
|
|
]}
|
|
|
|
|
|
2022-03-04 18:12:19 +01:00
|
|
|
|
@section{Additional stream utilities}
|
|
|
|
|
|
2022-03-04 17:24:18 +01:00
|
|
|
|
@defproc[(cartesian-product-2/stream [s1 (Sequenceof a)]
|
|
|
|
|
[s2 (Sequenceof b)])
|
|
|
|
|
(Sequenceof (Pair a b))]{
|
|
|
|
|
|
|
|
|
|
Generates a stream containing all the pairs of the elements from @racket[s1]
|
|
|
|
|
and @racket[s2]. The elements of @racket[s2] are enumerated in order for every
|
|
|
|
|
element of the @racket[s1], taken in order as well.
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(require typed/racket/stream)
|
|
|
|
|
(stream->list (cartesian-product-2/stream (in-range 1 5) '(a b)))
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
The streams can be infinite. If the second stream is infinite, only the first
|
|
|
|
|
element of @racket[s1] will be enumerated.
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(stream->list (stream-take (cartesian-product-2/stream '(a b) (in-naturals)) 10))
|
|
|
|
|
]}
|
|
|
|
|
|
2022-03-04 18:08:00 +01:00
|
|
|
|
@defproc[(cartesian-product/stream [ss (Listof (Sequenceof a))])
|
|
|
|
|
(Sequenceof (Listof a))]{
|
|
|
|
|
|
|
|
|
|
Generates a stream containing all the elements of the Cartesian product between
|
|
|
|
|
the streams of @racket[ss].
|
|
|
|
|
|
|
|
|
|
This function relies on @racket[cartesian-product-2/stream] to build the
|
|
|
|
|
Cartesian product, so it has the same properties with respect to the order in
|
|
|
|
|
which the streams are enumerated.
|
|
|
|
|
|
|
|
|
|
Union types can be used to build the Cartesian product of streams containing
|
|
|
|
|
values of different types.
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(stream->list (cartesian-product/stream (list (in-range 3) (in-range 4 6) '(a b))))
|
|
|
|
|
]}
|
|
|
|
|
|
2020-11-29 21:41:00 +01:00
|
|
|
|
@section{Boolean operations}
|
2022-03-05 00:14:38 +01:00
|
|
|
|
|
|
|
|
|
@defproc[(boolean-power [n Integer])
|
|
|
|
|
(Listof (Listof Boolean))]{
|
|
|
|
|
|
|
|
|
|
Returns the @racket[n]-th Cartesian power of the Boolean domain.
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(boolean-power 2)
|
2022-03-05 00:20:51 +01:00
|
|
|
|
]}
|
|
|
|
|
|
|
|
|
|
@defproc[(boolean-power/stream [n Integer])
|
|
|
|
|
(Sequenceof (Listof Boolean))]{
|
|
|
|
|
|
|
|
|
|
Like @racket[boolean-power], but returns a stream.
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(stream->list (boolean-power/stream 2))
|
|
|
|
|
]}
|
2022-03-05 12:55:23 +01:00
|
|
|
|
|
|
|
|
|
@defproc[(any->01 [x Any]) (U Zero One)]{
|
|
|
|
|
|
|
|
|
|
Converts any non-@racket[#f] value to 1 and @racket[#f] to 0.
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(any->01 #t)
|
|
|
|
|
(any->01 #f)
|
|
|
|
|
(any->01 'hello)
|
|
|
|
|
]}
|
2022-03-05 13:07:44 +01:00
|
|
|
|
|
|
|
|
|
@defproc[(01->boolean [x (U Zero One)]) Boolean]{
|
|
|
|
|
|
|
|
|
|
Converts 0 to @racket[#f] and 1 to @racket[#t].
|
|
|
|
|
|
|
|
|
|
@examples[#:eval utils-evaluator
|
|
|
|
|
(01->boolean 0)
|
|
|
|
|
(01->boolean 1)
|
|
|
|
|
]}
|