Drop the untyped part of dds/tbn.
This commit is contained in:
parent
dd7117c733
commit
0fa6ead5ec
2 changed files with 559 additions and 1283 deletions
|
@ -1,7 +1,7 @@
|
||||||
#lang scribble/manual
|
#lang scribble/manual
|
||||||
@(require scribble/example racket/sandbox
|
@(require scribble/example racket/sandbox
|
||||||
(for-label typed/racket/base
|
(for-label typed/racket/base
|
||||||
(submod "../tbn.rkt" typed)
|
"../tbn.rkt"
|
||||||
"../networks.rkt"
|
"../networks.rkt"
|
||||||
"../utils.rkt"
|
"../utils.rkt"
|
||||||
"../functions.rkt"
|
"../functions.rkt"
|
||||||
|
@ -11,7 +11,7 @@
|
||||||
(parameterize ([sandbox-output 'string]
|
(parameterize ([sandbox-output 'string]
|
||||||
[sandbox-error-output 'string]
|
[sandbox-error-output 'string]
|
||||||
[sandbox-memory-limit 500])
|
[sandbox-memory-limit 500])
|
||||||
(make-evaluator 'typed/racket #:requires '((submod "tbn.rkt" typed)))))
|
(make-evaluator 'typed/racket #:requires '("tbn.rkt"))))
|
||||||
|
|
||||||
@(define-syntax-rule (ex . args)
|
@(define-syntax-rule (ex . args)
|
||||||
(examples #:eval tbn-evaluator . args))
|
(examples #:eval tbn-evaluator . args))
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
|
|
||||||
@title[#:tag "tbn"]{dds/tbn: Threshold and Sign Boolean Networks (TBN and SBN)}
|
@title[#:tag "tbn"]{dds/tbn: Threshold and Sign Boolean Networks (TBN and SBN)}
|
||||||
|
|
||||||
@defmodule[(submod dds/tbn typed)]
|
@defmodule[dds/tbn]
|
||||||
|
|
||||||
@section{TBFs and states}
|
@section{TBFs and states}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue