From 5315a69a1e0df22cba4ba2b11d2c66da4e4486f6 Mon Sep 17 00:00:00 2001 From: phkahler <14852918+phkahler@users.noreply.github.com> Date: Fri, 31 Dec 2021 15:05:17 -0500 Subject: [PATCH] Increase MAX_UNKNOWNS in the solver from 1024 to 2048 --- src/solvespace.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/solvespace.h b/src/solvespace.h index 83b868f3..1c22db62 100644 --- a/src/solvespace.h +++ b/src/solvespace.h @@ -215,7 +215,7 @@ void Error(const char *fmt, ...); class System { public: - enum { MAX_UNKNOWNS = 1024 }; + enum { MAX_UNKNOWNS = 2048 }; EntityList entity; ParamList param;