Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Xyene committed Jan 7, 2024
1 parent 58aed71 commit ccd8f47
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion dmoj/executors/DART.py
Original file line number Diff line number Diff line change
Expand Up @@ -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...
Expand All @@ -20,7 +21,6 @@ class Executor(CompiledExecutor):
print("echo: Hello, World!");
}
"""
address_grace = 128 * 1024 * 1024

syscalls = [
'timerfd_settime',
Expand Down
2 changes: 0 additions & 2 deletions dmoj/executors/HASK.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ccd8f47

Please sign in to comment.