Mathos Parser Versions Save

A mathematical expression parser and evaluation library.

2.0.0

5 years ago

Changes

  • .Net Standard version added.
  • Dropped support of decimal in favor of double.
  • OperatorList has been removed (OperatorAction is now Operators).
  • Can now initialize CultureInfo through the constructor.
  • Added ln, acos, asin, atan, and ceil to the list of predefined functions.
  • Can now omit the leading zero before decimal points.
  • Minor performance improvements.
  • Updates to XML-comments.
  • Other small changes and improvements.

MathosParser

9 years ago

Fixed the bug https://github.com/MathosProject/Mathos-Parser/issues/1

An error could be thrown by for example:

-sin(5)

Or any other function that would be negative. There was an error in the BasicArithmeticalExpression logic.