From 764b4612f109cbc5f3b7d92e608ed0decefa3848 Mon Sep 17 00:00:00 2001 From: Sergiu Ivanov Date: Mon, 3 Apr 2023 16:19:57 +0200 Subject: [PATCH] Make the sandbox sizes 10 times bigger for all scribblings. --- scribblings/functions.scrbl | 2 +- scribblings/networks.scrbl | 2 +- scribblings/tbn.scrbl | 2 +- scribblings/utils.scrbl | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scribblings/functions.scrbl b/scribblings/functions.scrbl index 1d16003..48a6aae 100644 --- a/scribblings/functions.scrbl +++ b/scribblings/functions.scrbl @@ -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) diff --git a/scribblings/networks.scrbl b/scribblings/networks.scrbl index ea2ed86..5eb453a 100644 --- a/scribblings/networks.scrbl +++ b/scribblings/networks.scrbl @@ -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) diff --git a/scribblings/tbn.scrbl b/scribblings/tbn.scrbl index feb6e4a..b3e241e 100644 --- a/scribblings/tbn.scrbl +++ b/scribblings/tbn.scrbl @@ -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) diff --git a/scribblings/utils.scrbl b/scribblings/utils.scrbl index d04fc8c..6326dfc 100644 --- a/scribblings/utils.scrbl +++ b/scribblings/utils.scrbl @@ -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)