more reasonable numbers for memory
authorYehowshua Immanuel <programmed4jesus@gmail.com>
Thu, 4 Jun 2020 21:00:04 +0000 (17:00 -0400)
committerGitHub <noreply@github.com>
Thu, 4 Jun 2020 21:00:04 +0000 (17:00 -0400)
backends/smt2/smtio.py

index 9d03e162eec74f152da4ce45fdc1a27d49bc6b59..72ab39d396fc4079f370a0c13e6d38de2fe776e8 100644 (file)
@@ -39,7 +39,7 @@ if os.name == "posix":
         smtio_stacksize = 128 * 1024 * 1024
         if os.uname().sysname == "Darwin":
             # MacOS has rather conservative stack limits
-            smtio_stacksize = 16 * 1024 * 512
+            smtio_stacksize = 8 * 1024 * 1024
         if current_rlimit_stack[1] != resource.RLIM_INFINITY:
             smtio_stacksize = min(smtio_stacksize, current_rlimit_stack[1])
         if current_rlimit_stack[0] < smtio_stacksize: