summaryrefslogtreecommitdiff
path: root/config.conf
diff options
context:
space:
mode:
authorphysick <mynameisgennadiy@vk.com>2026-07-28 20:29:45 +0500
committerphysick <mynameisgennadiy@vk.com>2026-07-28 20:33:20 +0500
commit7237c999918e44e2e76a6d2e2ae37ea709af08f6 (patch)
treef15f39c2ba4092bd3bf7fd7b8548c51535ee3940 /config.conf
parent48faa910496b1b3811c2b52f16d5a76f38ca3e48 (diff)
Added wren limiting fork support
Diffstat (limited to 'config.conf')
-rw-r--r--config.conf14
1 files changed, 14 insertions, 0 deletions
diff --git a/config.conf b/config.conf
new file mode 100644
index 0000000..fa6325e
--- /dev/null
+++ b/config.conf
@@ -0,0 +1,14 @@
+# The config for the game. All the parameters are described.
+# The comments are ignored. All the unknown parameters are ignored.
+# Unspecified parameters will be assigned to a default value.
+# Keep in mind that there is no guarantee that the game will work correctly
+# with invalid parameters.
+
+# The maximum amount of operations performed by a VM on each check.
+# Minimum value - 0 (!no code will ever be executed!)
+# Maximum value - 4294967295
+#
+# Keep in mind that setting this parameter higher will make the infinite
+# loops in your submission longer to detect. Lowering this parameter will make
+# the limitation on the code runtime stricter.
+MaxOperations=2000000