Skip to content

Commit dedb825

Browse files
authored
Update README.md
1 parent c619f42 commit dedb825

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,15 @@
44

55
ExpressionParser is a mathematics parsing engine for .net. It supports expression nesting, custom variables, custom functions all standard mathematical operations for integer, decimal (floating point), logic and bitwise.
66

7-
It addition to the custom functions and variables, these are built in: ACOS, ASIN, ATAN, ATAN2, LDEXP, SINH, COSH, TANH, LOG, LOG10, EXP, MODPOW, SQRT, POW, FLOOR, CEIL, NOT, AVG, SUM, TAN, ATAN, SIN, COS, ABS, and many more!
8-
97
🔥 Benchmarked at ~0.22 µs per expression (≈ 4.5M eval/s per core). That’s ~22M arithmetic ops/sec with our test expression.
108
Roughly on par with compiled expression trees / LLVM-JIT math engines — this parser isn’t "fast for C#"; it’s *fast, period*.
119

10+
It addition to the custom functions and variables, out of the box it supports: abs, acos, asin, atan, atan2, avg, ceil, clamp, cos, cosh, count, deg, e, exp, floor, hypot, if, log, log10, logn, modpow, not, pi, pow, prod, rad, rand, round, sign, sin, sinh, sqrt, sum, tan, tanh, trunc.
11+
1212
[![Regression Tests](https://github.com/NTDLS/NTDLS.ExpressionParser/actions/workflows/Regression%20Tests.yml/badge.svg)](https://github.com/NTDLS/NTDLS.ExpressionParser/actions/workflows/Regression%20Tests.yml)
1313

1414
👀 If you came for the C++ version you can find it at: https://github.com/NTDLS/CMathParser
1515

16-
👀 Be sure to check out the NuGet package: https://www.nuget.org/packages/NTDLS.ExpressionParser/
17-
1816
## Basic usage:
1917

2018
>**Simple Example:**

0 commit comments

Comments
 (0)