Make the sandbox sizes 10 times bigger for all scribblings.
This commit is contained in:
parent
72454c395c
commit
764b4612f1
4 changed files with 4 additions and 4 deletions
|
@ -7,7 +7,7 @@
|
|||
@(define functions-evaluator
|
||||
(parameterize ([sandbox-output 'string]
|
||||
[sandbox-error-output 'string]
|
||||
[sandbox-memory-limit 50])
|
||||
[sandbox-memory-limit 500])
|
||||
(make-evaluator 'typed/racket #:requires '("functions.rkt"))))
|
||||
|
||||
@(define-syntax-rule (ex . args)
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
@(define networks-evaluator
|
||||
(parameterize ([sandbox-output 'string]
|
||||
[sandbox-error-output 'string]
|
||||
[sandbox-memory-limit 50])
|
||||
[sandbox-memory-limit 500])
|
||||
(make-evaluator 'typed/racket #:requires '("networks.rkt"))))
|
||||
|
||||
@(define-syntax-rule (ex . args)
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
@(define tbn-evaluator
|
||||
(parameterize ([sandbox-output 'string]
|
||||
[sandbox-error-output 'string]
|
||||
[sandbox-memory-limit 50])
|
||||
[sandbox-memory-limit 500])
|
||||
(make-evaluator 'typed/racket #:requires '((submod "tbn.rkt" typed)))))
|
||||
|
||||
@(define-syntax-rule (ex . args)
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
@(define utils-evaluator
|
||||
(parameterize ([sandbox-output 'string]
|
||||
[sandbox-error-output 'string]
|
||||
[sandbox-memory-limit 50])
|
||||
[sandbox-memory-limit 500])
|
||||
(make-evaluator 'typed/racket #:requires '("utils.rkt"))))
|
||||
|
||||
@(define-syntax-rule (ex . args)
|
||||
|
|
Loading…
Reference in a new issue