You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
lp_sum returns a deeply imbalanced expression tree of the form AddExpr(a, AddExpr(b, AddExpr(c, AddExpr(d)))), which then causes stack overflows when being processed by simplify (see #37).
lp_sum could return a balanced tree of depth log2(n) (instead of n), which would be less likely to cause stack overflows during processing.
The text was updated successfully, but these errors were encountered:
lp_sum returns a deeply imbalanced expression tree of the form
AddExpr(a, AddExpr(b, AddExpr(c, AddExpr(d))))
, which then causes stack overflows when being processed bysimplify
(see #37).lp_sum could return a balanced tree of depth log2(n) (instead of n), which would be less likely to cause stack overflows during processing.
The text was updated successfully, but these errors were encountered: