Increase MAX_UNKNOWNS in the solver from 1024 to 2048

pull/1160/head
phkahler 2021-12-31 15:05:17 -05:00
parent 18dc8ee12c
commit 5315a69a1e
1 changed files with 1 additions and 1 deletions

View File

@ -215,7 +215,7 @@ void Error(const char *fmt, ...);
class System { class System {
public: public:
enum { MAX_UNKNOWNS = 1024 }; enum { MAX_UNKNOWNS = 2048 };
EntityList entity; EntityList entity;
ParamList param; ParamList param;