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
Added function validators to ensure that only valid values are computed. This checks for things such as attempting to compute sqrt(-1) or sin^-1(5) and throws a MathSyntaxException.
Added checks to ensure that all symbols are unique. The former checks ensured no duplicate symbols within each category, but did not cross check them with other categories.
Fixed issue where converting a double to a string yielded a result in scientific notation where E was either not recognized, or was treated as a constant.