diff --git a/dmoj/executors/DART.py b/dmoj/executors/DART.py index 31440cf6e..ae835a97d 100644 --- a/dmoj/executors/DART.py +++ b/dmoj/executors/DART.py @@ -9,6 +9,7 @@ class Executor(CompiledExecutor): ext = 'dart' nproc = -1 # Dart uses a really, really large number of threads + address_grace = 512 * 1024 command = 'dart' compiler_read_fs = [ # Dart shells out... @@ -20,7 +21,6 @@ class Executor(CompiledExecutor): print("echo: Hello, World!"); } """ - address_grace = 128 * 1024 * 1024 syscalls = [ 'timerfd_settime', diff --git a/dmoj/executors/HASK.py b/dmoj/executors/HASK.py index 14199909d..690e64576 100644 --- a/dmoj/executors/HASK.py +++ b/dmoj/executors/HASK.py @@ -14,8 +14,6 @@ class Executor(NullStdoutMixin, CompiledExecutor): ] syscalls = ['timerfd_settime'] nproc = -1 - address_grace = 128 * 1024 * 1024 - data_grace = 128 * 1024 test_program = """\ main = do